The current Hugo theme for the beetbox.io website
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<section>
|
|
|
|
<h1 class="large-text">{{ .Title | markdownify }}</h1>
|
|
|
|
|
|
|
|
{{ with .Params.authors }}
|
|
|
|
{{ $author := (index . 0) }}
|
|
|
|
<h2>
|
|
|
|
Author: <a href={{ printf "/%s/%s" "authors" (urlize $author) }}>{{ $author }}</a>
|
|
|
|
</h2>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .Date }}
|
|
|
|
<h2 class="small-text">Posted: {{ .Format "Mon | Jan 2, 2006" }}</h2>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ .Render "meta-extra" }}
|
|
|
|
|
|
|
|
{{ range (.GetTerms "tags") }}
|
|
|
|
<span>
|
|
|
|
<a class="small-text" href="{{ .Permalink }}">{{ .LinkTitle }}</a>
|
|
|
|
</span>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ $image := (.Resources.GetMatch "featured") }}
|
|
|
|
{{ partial "image.html" (dict "image" $image "alt" .Params.featured.alt "class" "shadow featured") }}
|
|
|
|
</section>
|