mirror of
https://github.com/Brandon-Rozek/website-theme.git
synced 2024-11-09 10:50:34 -05:00
list.html is the same as single.html for the default type. Changed the archetype to include tags
This commit is contained in:
parent
6d0644c7ac
commit
4cd68c5fbf
2 changed files with 10 additions and 1 deletions
|
@ -2,5 +2,5 @@
|
||||||
title: "{{ replace .TranslationBaseName "-" " " | title }}"
|
title: "{{ replace .TranslationBaseName "-" " " | title }}"
|
||||||
date: {{ dateFormat "2006-01-02T15:04:05Z07:00" .Date }}
|
date: {{ dateFormat "2006-01-02T15:04:05Z07:00" .Date }}
|
||||||
draft: true
|
draft: true
|
||||||
images: []
|
tags: []
|
||||||
---
|
---
|
||||||
|
|
9
layouts/_default/list.html
Normal file
9
layouts/_default/list.html
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{{ define "main"}}
|
||||||
|
<h1 class='title'>{{ .Title }}</h1>
|
||||||
|
{{ partial "header.html" . }}
|
||||||
|
<!-- content -->
|
||||||
|
<div id="contentBody">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
{{ partial "footer.html" . }}
|
||||||
|
{{ end }}
|
Loading…
Reference in a new issue