mirror of
https://github.com/Pagwin-Fedora/website.git
synced 2025-07-17 23:05:41 +00:00
66 lines
2.4 KiB
HTML
66 lines
2.4 KiB
HTML
{{ partial "head.html" . }}
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ $baseurl := .Site.BaseURL }}
|
|
{{ $categories := .Params.categories }}
|
|
{{ $tags := .Params.tags }}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="sixteen columns">
|
|
<article class="li-article">
|
|
<header class="li-article-header">
|
|
<h1 class="li-article-title">{{ .Title }}</h1>
|
|
<span class="li-article-taxonomies">
|
|
{{ with $categories }}
|
|
Posted in
|
|
{{ range $categories }}
|
|
<a href="{{ $baseurl }}/categories/{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ with $tags }}
|
|
with tags
|
|
{{ range $tags }}
|
|
<a href="{{ $baseurl }}/tags/{{ . | urlize }}">{{ . }}</a>
|
|
{{ end }}
|
|
{{ end }}
|
|
</span>
|
|
{{ if or $categories $tags }} - {{ end }}
|
|
<time class="li-article-date">{{ .Date.Format "Monday, January 2, 2006" }}</time>
|
|
</header>
|
|
<section>
|
|
{{ .Content }}
|
|
</section>
|
|
</article>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "author.html" .}}
|
|
{{ partial "comments.html" . }}
|
|
<div class="row li-pagination">
|
|
<div class="eight columns">
|
|
<div class="li-pagination-previous">
|
|
{{with .Prev}}
|
|
Older article<br />
|
|
<a href="{{.Permalink}}"> {{.Title}}</a>
|
|
{{else}}
|
|
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
<div class="eight columns">
|
|
<div class="li-pagination-next">
|
|
{{with .Next}}
|
|
Later article<br />
|
|
<a href="{{.Permalink}}"> {{.Title}}</a>
|
|
{{else}}
|
|
|
|
{{end}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "tail.html" . }}
|