Initial commit
This commit is contained in:
parent
1228692325
commit
dbe51f693d
23 changed files with 1924 additions and 0 deletions
17
layouts/_default/single.html
Normal file
17
layouts/_default/single.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
{{ define "main" }}
|
||||
{{ with .Site.RegularPages.Prev . }}
|
||||
<a href="{{ .RelPermalink }}" rel="prev">« Previous post: <i>{{ .Title }}</i></a>
|
||||
{{ end }}
|
||||
{{ with .Site.RegularPages.Next . }}
|
||||
<a href="{{ .RelPermalink }}" rel="next" style="float: right">Next post: <i>{{ .Title }}</i> »</a>
|
||||
{{ end }}
|
||||
<br><br>
|
||||
<article>
|
||||
<header>
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ partial "metadata.html" . }}
|
||||
</header>
|
||||
<br>
|
||||
{{ .Content }}
|
||||
</article>
|
||||
{{ end }}
|
Reference in a new issue