|
|
@ -1,17 +1,6 @@ |
|
|
|
{{ define "main" }} |
|
|
|
<div class="article-meta"> |
|
|
|
<h1 class="center-text">{{ .Title | markdownify }}</h1> |
|
|
|
{{ $authors := .Params.authors | default (slice .Site.Params.defaultAuthor) }} |
|
|
|
<a class="center-text" href={{ printf "/%s/%s" "authors" (index $authors 0 | urlize) }}><h2 class="center-text">{{ index $authors 0 }}</h2></a> |
|
|
|
{{ if .Params.releaseDate }}<h2 class="small-text">Released {{ dateFormat "Mon | Jan 2, 2006" .Params.releaseDate }}</h2>{{ end }} |
|
|
|
{{ range (.GetTerms "tags") }} |
|
|
|
<a class="small-text" href="{{ .Permalink }}">{{ .LinkTitle }}</a> |
|
|
|
{{ end }} |
|
|
|
<div class="break"></div> |
|
|
|
<h2 class="small-text">Platforms:</h2> |
|
|
|
<span class="margin small-text">{{ delimit .Params.platforms " · " }}</span> |
|
|
|
{{ partial "responsive-image.html" (dict "context" . "class" "shadow fill-wh") }} |
|
|
|
</div> |
|
|
|
|
|
|
|
{{ partial "article-meta.html" . }} |
|
|
|
|
|
|
|
{{ if .Params.toc }} |
|
|
|
{{ .TableOfContents }} |
|
|
|