mirror of
https://github.com/hyzendust/hyzendust.github.io.git
synced 2026-02-15 00:01:11 +01:00
22 lines
454 B
HTML
22 lines
454 B
HTML
{{ define "main" }}
|
|
|
|
<div class="breadcrumbs">
|
|
You are here:
|
|
<a href="{{ "/" | relURL }}">Home</a> /
|
|
<a href="{{ "/categories/" | relURL }}">Categories</a> /
|
|
<span>{{ .Title }}</span>
|
|
</div>
|
|
|
|
{{ .Content }}
|
|
|
|
<section class="posts-list">
|
|
{{ range .Pages.ByDate.Reverse }}
|
|
{{ partial "main/dates.html" . }}
|
|
<h2 class="term-post-title">
|
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
|
</h2>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ end }}
|