Skip to content

Commit

Permalink
Added section back in to fix missing arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoko committed Dec 29, 2020
1 parent 029cc7d commit 46b96bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion site/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ baseURL = "https://kapoko.github.io/delicious-hamburgers/"
languageCode = "en-us"
title = "Delicious Hamburgers 🍔"
staticDir = ["static", "dist"]
disableKinds = ["taxonomy", "taxonomyTerm", "section"]
disableKinds = ["taxonomy", "taxonomyTerm"]
[params]
author = "Kasper Koman"
description = "Beautifully animated Sass-powered hamburger menu buttons"
Expand Down
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 }}

0 comments on commit 46b96bd

Please sign in to comment.