mirror of
https://github.com/adityatelange/hugo-PaperMod.git
synced 2023-12-21 10:22:58 +01:00
16 lines
400 B
HTML
16 lines
400 B
HTML
{{ template "theme/chrome/head.html" . }}
|
|
<body>
|
|
|
|
{{ template "theme/chrome/sidebar.html" . }}
|
|
|
|
<div class="content container">
|
|
<ul class="posts">
|
|
{{ range .Data.Pages }}
|
|
<li><span><a href="{{ .Permalink }}">{{ .Title }}</a><time class="pull-right post-list">{{ .Date.Format "Mon, Jan 2, 2006" }}</h4></time></span></span></li>
|
|
{{ end }}
|
|
</ul>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|