34 lines
696 B
HTML
34 lines
696 B
HTML
{{ define "main" }}
|
|
|
|
{{ .Content }}
|
|
|
|
<details open>
|
|
<summary>
|
|
<h2 id="latest-posts">
|
|
Latest <a href="/blog">Blog</a> Posts (<a target="_blank" href="/blog/index.xml">RSS</a>)
|
|
</h2>
|
|
</summary>
|
|
|
|
{{ range (where .Site.RegularPages "Section" "blog") }}
|
|
{{ .Render "li" }}
|
|
{{ else }}
|
|
<p>Looks like there's nothing here!... yet!</p>
|
|
{{ end }}
|
|
</details>
|
|
|
|
<details open>
|
|
<summary>
|
|
<h2 id="latest-tips">
|
|
Latest <a href="/tips">Tips</a> (<a target="_blank" href="/tips/index.xml">RSS</a>)
|
|
</h2>
|
|
</summary>
|
|
|
|
{{ range (where .Site.RegularPages "Section" "tips") }}
|
|
{{ .Render "li" }}
|
|
{{ else }}
|
|
<p>Looks like there's nothing here!... yet!</p>
|
|
{{ end }}
|
|
</details>
|
|
|
|
{{ end }}
|