diff options
author | William Carroll <wpcarro@gmail.com> | 2019-11-19T18·36-0300 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-11-19T18·36-0300 |
commit | dbde1a1ef9865dfb180c9e42e1cc696dfd19554c (patch) | |
tree | f32056d54e7aa9f52e9ed5376850e524f541254f /layouts/taxonomy/terms.html | |
parent | 693a189ffaacebd82646f1d03f0577c555f26cb3 (diff) |
Hugo theme (#1)
Diffstat (limited to 'layouts/taxonomy/terms.html')
-rw-r--r-- | layouts/taxonomy/terms.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/layouts/taxonomy/terms.html b/layouts/taxonomy/terms.html new file mode 100644 index 000000000000..76da49ed0a09 --- /dev/null +++ b/layouts/taxonomy/terms.html @@ -0,0 +1,13 @@ +{{ define "content" }} +<section class="mb-24"> + <ol class="-mx-2"> + {{ range .Pages -}} + <li class="inline-block mx-2 my-2"> + <a class="border-none text-gray-800 bg-gray-400 hover:bg-gray-600 hover:text-white rounded-sm px-3 py-1" href="{{ .RelPermalink }}"> + {{ .Title }} + </a> + </li> + {{- end }} + </ol> +</section> +{{ end }} |