summaryrefslogtreecommitdiff
path: root/themes/hugo-xmin/layouts/index.html
blob: e3b9abe14482b2246e519affb22ace142df45ad3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{ partial "header.html" . }}

{{ .Content }}

<h2>Cheat Sheets:</h2>
<ul>
  {{ $pages := .Site.RegularPages }}
  {{ range (where $pages "Section" "cheatsheets") }}
  <li>
    <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

<h2>Posts:</h2>
<ul>
  {{ $pages := .Site.RegularPages }}
  {{ range (where $pages "Section" "posts") }}
  <li>
    <span class="date">{{ .Date.Format "01/02/2006" }}</span>
    <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
  </li>
  {{ end }}
</ul>

{{ partial "footer.html" . }}