diff options
Diffstat (limited to 'layouts/_default/comic.html')
-rw-r--r-- | layouts/_default/comic.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/layouts/_default/comic.html b/layouts/_default/comic.html new file mode 100644 index 0000000..1b3e33e --- /dev/null +++ b/layouts/_default/comic.html @@ -0,0 +1,37 @@ +{{ define "main" }} +{{ if .Menus }} +<nav class="post-navigation"> + {{ range .Menus }} + <a href="{{ .URL | absLangURL }}" title="{{ .Title }}">{{ .Name }}</a> + {{ end }} +</nav> +{{ end }} + +<article class="post h-entry"> + <header class="post-header"> + <center> + <h1 class="p-name post-title{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1> + {{ if in .Params.categories "comics" }} + </center> + {{ end}} + </header> + <div class="content e-content"> + <center> + {{ partial "comicNav.html" . }} + <img title="{{ .Params.TitleText }}" alt="{{ .Params.Alt}}" + src={{ .Params.ComicLink}}> + {{ partial "comicNav.html" . }} + {{ .Content }} + <center> + </div> + {{ partial "postInfo.html" . }} +</article> + +{{ if and (.Site.Params.paginationSinglePost) (ne .Type "page") }} + {{ partial "paginationPost.html" . }} +{{ end }} + + +{{ partial "custom-webring.html" }} + +{{ end }} |