Tags and categories are now working with custom layouts. More changes to make but its in the right direction
This commit is contained in:
parent
6071c2d849
commit
fb66080ef1
@ -1,6 +1,9 @@
|
|||||||
{{ partial "header.html" . }}
|
{{ partial "header.html" . }}
|
||||||
{{ partial "hero.html" . }}
|
{{ partial "hero.html" . }}
|
||||||
|
|
||||||
|
<h1>hi from _default/index.html</h1>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
|
||||||
|
</div>
|
||||||
|
@ -2,11 +2,14 @@
|
|||||||
{{ partial "hero.html" . }}
|
{{ partial "hero.html" . }}
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<br>
|
||||||
|
|
||||||
{{ range .RegularPages }}
|
{{ range .RegularPages }}
|
||||||
|
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-content">
|
<div class="card-content">
|
||||||
<div class="media">
|
<div class="media">
|
||||||
|
|
||||||
<div class="media-left">
|
<div class="media-left">
|
||||||
<figure class="image is-128x128">
|
<figure class="image is-128x128">
|
||||||
{{ with .Params.listthumbnail }}
|
{{ with .Params.listthumbnail }}
|
||||||
@ -20,20 +23,33 @@
|
|||||||
<a href="{{ .Permalink }}"> {{ .Title }}</a>
|
<a href="{{ .Permalink }}"> {{ .Title }}</a>
|
||||||
</p>
|
</p>
|
||||||
<p class="subtitle is-6">{{ .Params.subtitle }}</p>
|
<p class="subtitle is-6">{{ .Params.subtitle }}</p>
|
||||||
|
|
||||||
{{ with .Params.tags }}
|
{{ with .Params.tags }}
|
||||||
<ul id="tags">
|
<div class="buttons">
|
||||||
{{ range . }}
|
{{ range . }}
|
||||||
<span class="tag">
|
<button class="button">
|
||||||
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
||||||
</span>
|
</button>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
|
||||||
|
{{ with .Params.categories }}
|
||||||
|
<div class="buttons">
|
||||||
|
{{ range . }}
|
||||||
|
<button class="button">
|
||||||
|
<a href="{{ "categories" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
||||||
|
</button>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "footer.html" . }}
|
@ -2,24 +2,38 @@
|
|||||||
{{ partial "hero.html" . }}
|
{{ partial "hero.html" . }}
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<img src="{{ .Params.thumbnail }}" />
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
{{ .Content }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h4 class="subtitle" id="date"> Posted: {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
|
||||||
<h5 class="subtitle" id="wordcount"> Word Count: {{ .WordCount }} Words </h5>
|
|
||||||
|
|
||||||
<br>
|
<br>
|
||||||
<h2 class="title">Tags</h2>
|
|
||||||
{{ with .Params.tags }}
|
<div class="columns">
|
||||||
{{ range . }}
|
|
||||||
<span class="tag">
|
<div class="column">
|
||||||
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
<img src="{{ .Params.thumbnail }}" />
|
||||||
</span>
|
</div>
|
||||||
{{ end }}
|
|
||||||
{{ end }}
|
<div class="column">
|
||||||
|
<div class="content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<h4 class="subtitle" id="date"> Posted: {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
||||||
|
<h5 class="subtitle" id="wordcount"> Word Count: {{ .WordCount }} Words </h5>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<h2 class="title">Tags</h2>
|
||||||
|
|
||||||
|
<div class="buttons">
|
||||||
|
{{ with .Params.tags }}
|
||||||
|
|
||||||
|
{{ range . }}
|
||||||
|
<button class="button">
|
||||||
|
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
||||||
|
</button>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,11 +0,0 @@
|
|||||||
{{ partial "header.html" . }}
|
|
||||||
{{ partial "hero.html" . }}
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<div>
|
|
||||||
<!-- ranges through each of the content files associated with a particular taxonomy term and renders the summary.html content view -->
|
|
||||||
{{ range .Pages }}
|
|
||||||
{{ .Render "tags"}}
|
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
</main>
|
|
@ -14,6 +14,7 @@
|
|||||||
<div class="navbar-start">
|
<div class="navbar-start">
|
||||||
<a class="navbar-item" href="/recipies">Recipies</a>
|
<a class="navbar-item" href="/recipies">Recipies</a>
|
||||||
<a class="navbar-item" href="/tags">Tags</a>
|
<a class="navbar-item" href="/tags">Tags</a>
|
||||||
|
<a class="navbar-item" href="/categories">Categories</a>
|
||||||
<a class="navbar-item" href="/recipies/index.xml">RSS Feed</a>
|
<a class="navbar-item" href="/recipies/index.xml">RSS Feed</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
16
themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html
Normal file
16
themes/hugo-bulma-cookbook/layouts/taxonomy/terms.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
{{ partial "header.html" . }}
|
||||||
|
{{ partial "hero.html" . }}
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<div class="buttons">
|
||||||
|
{{ range .Data.Pages }}
|
||||||
|
<button class="button">
|
||||||
|
<a href="{{.RelPermalink}}">{{ .Title }}</a>
|
||||||
|
</button>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ partial "footer.html" . }}
|
Loading…
Reference in New Issue
Block a user