shared-bulma-theme/layouts/entry/single.html

37 lines
1.2 KiB
HTML
Raw Normal View History

{{ define "header" }}
{{ $author := index .Site.Data.authors ( .Params.author | default "" ) }}
<div class="container">
<div class="mb-md blog-entry-header single" style="background-image: url('{{ .Site.BaseURL }}/{{ .Dir }}banner.png')">
<div>
<span class="title px-md py-sm has-background-dark">{{ .Title }}</span>
</div>
{{ if $author }}
<div class="mt-lg">
<span class="h3 px-md py-sm has-background-dark">
Written by <a href="https://community.citra-emu.org/users/{{ $author.key }}">{{ $author.name }}</a>
2018-04-15 01:34:02 +02:00
on {{ .Date.Format $.Site.Params.fmt.Date }}
</span>
</div>
{{ else }}
<div>
<span class="h3 px-md py-sm has-background-dark">
2018-04-15 01:34:02 +02:00
Written on {{ .Date.Format $.Site.Params.fmt.Date }}
</span>
</div>
{{ end }}
</div>
</div>
{{ end }}
{{ define "main" }}
<section class="section content pt-sm">
{{ .Content }}
</section>
{{ if .Params.forum }}
2018-04-15 01:34:02 +02:00
<div class="has-text-centered">
<a class="pagination-next" href="https://community.citra-emu.org/t/{{ .Params.forum }}">Continue the discussion on our forums.</a>
</div>
{{ end }}
2018-04-15 01:34:02 +02:00
{{ end }}