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.
22 lines
440 B
22 lines
440 B
{{ define "main" }}
|
|
|
|
{{ partial "article-meta.html" . }}
|
|
|
|
{{ if .Params.toc }}
|
|
{{ .TableOfContents }}
|
|
{{ end }}
|
|
<div class="content-wrapper">
|
|
<main>
|
|
{{ .Content }}
|
|
{{ if gt (len .Data.Pages) 0 }}
|
|
<h2>Devlogs:</h2>
|
|
<section class="article-list">
|
|
{{ range .Data.Pages }}
|
|
{{ partial "article-card.html" . }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
<a href="/"> >> Home</a>
|
|
</main>
|
|
</div>
|
|
{{ end }}
|
|
|