Init work for tags
This commit is contained in:
parent
99a4b9f4d9
commit
2670bbe0bd
3 changed files with 20 additions and 3 deletions
|
@ -42,9 +42,6 @@ rssLimit: 100
|
||||||
disableHugoGeneratorInject: true
|
disableHugoGeneratorInject: true
|
||||||
enableEmoji: true
|
enableEmoji: true
|
||||||
MetaDataFormat: yaml
|
MetaDataFormat: yaml
|
||||||
disableKinds:
|
|
||||||
- taxonomy
|
|
||||||
- taxonomyTerm
|
|
||||||
|
|
||||||
pygmentsCodeFencesGuessSyntax: true
|
pygmentsCodeFencesGuessSyntax: true
|
||||||
PygmentsCodeFences: true
|
PygmentsCodeFences: true
|
||||||
|
|
10
layouts/_default/taxonomy.html
Normal file
10
layouts/_default/taxonomy.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ partial "page_start.html" . }}
|
||||||
|
<section id="main" class="container">
|
||||||
|
{{ partial "content.html" . }}
|
||||||
|
<div class="row">
|
||||||
|
{{ range .Pages.ByTitle }}
|
||||||
|
{{ partial "box_image.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ partial "page_end.html" . }}
|
10
layouts/_default/terms.html
Normal file
10
layouts/_default/terms.html
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{{ partial "page_start.html" . }}
|
||||||
|
<section id="main" class="container">
|
||||||
|
{{ partial "content.html" . }}
|
||||||
|
<div class="row">
|
||||||
|
{{ range .Pages.ByTitle }}
|
||||||
|
{{ partial "box_image.html" . }}
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{{ partial "page_end.html" . }}
|
Loading…
Reference in a new issue