2023-11-24 18:38:28 +01:00

13 lines
424 B
HTML

{{ define "content" }}
<section class="section">
<div class="container">
<h1 class="title has-text-grey-light is-size-1">{{ .Title }}</h1>
<div>
{{ range .Params.mentions}}
<h2 class="title has-text-grey-light is-4 mb-2">{{ .title }}</h2>
<p class="has-text-grey-light">{{ .message |markdownify}}</p>
{{ end}}
</div>
</div>
</section>
{{ end }}