Skip to content

Commit

Permalink
Added list template to prevent hugo warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoko committed Dec 29, 2020
1 parent cfe0d41 commit 4be8a91
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions site/layouts/_default/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{{ define "main" }}
<div class="columns is-multiline">
<div class="column has-text-centered">
<ul>
{{ with .Site.GetPage "/burger" }}
{{ range .Pages.ByWeight }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
</ul>
</div>
</div>
{{ end }}
File renamed without changes.

0 comments on commit 4be8a91

Please sign in to comment.