Alexander Avery
9 months ago
2 changed files with 23 additions and 21 deletions
@ -1,25 +1,27 @@ |
|||||
{{ define "main" }} |
{{ define "main" }} |
||||
|
<main> |
||||
{{ partial "article-meta.html" . }} |
{{ partial "article-meta.html" . }} |
||||
|
|
||||
{{ if .Params.toc }} |
{{ if .Params.toc }} |
||||
{{ .TableOfContents }} |
{{ .TableOfContents }} |
||||
{{ end }} |
{{ end }} |
||||
|
|
||||
<div class="content-wrapper"> |
|
||||
<main> |
|
||||
{{ .Content }} |
{{ .Content }} |
||||
|
|
||||
<p> |
<p> |
||||
|
|
||||
{{ with .NextInSection }} |
{{ with .NextInSection }} |
||||
<b>Next: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> |
<b>Next: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> |
||||
<br> |
<br> |
||||
{{ end }} |
{{ end }} |
||||
|
|
||||
{{ with .PrevInSection }} |
{{ with .PrevInSection }} |
||||
<b>Previous: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> |
<b>Previous: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a> |
||||
<br> |
<br> |
||||
{{ end }} |
{{ end }} |
||||
|
|
||||
<b><a href="/"> >> Home</a></b> |
<b><a href="/"> >> Home</a></b> |
||||
</p> |
</p> |
||||
|
|
||||
</main> |
</main> |
||||
</div> |
|
||||
{{ end }} |
{{ end }} |
||||
|
Loading…
Reference in new issue