theme-mnemosyne-hugo/layouts/note/summary.html

17 lines
479 B
HTML

<div class="hero has-background-info-light">
<article class="my-6 container note">
<div class="columns">
<div class="column is-2">
<time>{{ .Date.Format .Site.Params.DateFormat }}</time>
{{ range .Params.tags }}
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
{{ end }}
</div>
<div class="column is-8 content">
{{ .Content }}
<!-- <p><a href="{{ .RelPermalink }}">Permalink</a></p> -->
</div>
</div>
</article>
</div>