Add special template for posts
This commit is contained in:
parent
2f5169d1d9
commit
49d46a71e6
15
themes/vanilla/layouts/blog/single.html
Normal file
15
themes/vanilla/layouts/blog/single.html
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{{ define "main" }}
|
||||||
|
<h2>{{ .Title }}</h2>
|
||||||
|
<div class="post-subscript">
|
||||||
|
<p>Posted on {{ .Date.Format "January 2, 2006" }}.</p>
|
||||||
|
<p>Tags:
|
||||||
|
{{ range .Params.tags }}
|
||||||
|
<a class="button" href="{{ $.Site.BaseURL }}/tags/{{ . | urlize }}">{{ . }}</a>
|
||||||
|
{{ end }}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="post-content">
|
||||||
|
{{ .Content }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
Loading…
Reference in New Issue
Block a user