|
@ -1,19 +1,12 @@ |
|
|
{{ define "main" }} |
|
|
{{ 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.date }}<h2 class="small-text">{{ .Date.Format "Mon | Jan 2, 2006" }}</h2>{{ end }} |
|
|
|
|
|
{{ range (.GetTerms "tags") }} |
|
|
|
|
|
<a class="small-text" href="{{ .Permalink }}">{{ .LinkTitle }}</a> |
|
|
|
|
|
{{ end}} |
|
|
|
|
|
{{ partial "responsive-image.html" (dict "context" . "class" "shadow large-image") }} |
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|
{{ if .Params.toc }} |
|
|
{{ partial "article-meta.html" . }} |
|
|
{{ .TableOfContents }} |
|
|
|
|
|
{{ end }} |
|
|
{{ if .Params.toc }} |
|
|
<div class="content-wrapper"> |
|
|
{{ .TableOfContents }} |
|
|
|
|
|
{{ end }} |
|
|
|
|
|
|
|
|
|
|
|
<div class="content-wrapper"> |
|
|
<main> |
|
|
<main> |
|
|
{{ .Content }} |
|
|
{{ .Content }} |
|
|
<p> |
|
|
<p> |
|
@ -28,5 +21,5 @@ |
|
|
<b><a href="/"> >> Home</a></b> |
|
|
<b><a href="/"> >> Home</a></b> |
|
|
</p> |
|
|
</p> |
|
|
</main> |
|
|
</main> |
|
|
</div> |
|
|
</div> |
|
|
{{ end }} |
|
|
{{ end }} |
|
|