ar.falsy.cat/layouts/_default/single.html

36 lines
905 B
HTML
Raw Normal View History

2021-07-18 13:35:42 +00:00
<!DOCTYPE html>
2022-02-15 22:12:08 +00:00
<html lang="{{ .Lang }}">
2021-07-18 13:35:42 +00:00
{{ partial "head.html" . }}
<body>
2021-08-27 18:08:11 +00:00
{{partial "search.html" .}}
2021-07-18 13:35:42 +00:00
<div class="singlePage">
<!-- Begin actual content -->
2022-07-13 21:32:32 +00:00
{{partial "header.html" .}}
<article>
2021-12-23 22:32:47 +00:00
{{if .Title}}<h1>{{ .Title }}</h1>{{end}}
2021-12-27 22:28:53 +00:00
<p class="meta">
{{ i18n "last_updated" }} {{ partial "date-fmt.html" .}}
2022-07-05 22:39:29 +00:00
{{ partial "github.html" . }}
2021-12-27 22:28:53 +00:00
</p>
2021-12-28 00:35:42 +00:00
<ul class="tags">
{{ range (.GetTerms "tags") }}
2023-01-04 03:10:25 +00:00
<li><a href="{{ .Permalink }}">
{{if (eq $.Site.Language.Lang "en")}}
{{ .LinkTitle | humanize }}
{{else}}
{{ .LinkTitle }}
{{end}}
</a>
</li>
2021-12-28 00:35:42 +00:00
{{ end }}
</ul>
2022-05-03 15:47:42 +00:00
{{partial "toc.html" .}}
2022-04-03 03:06:31 +00:00
{{partial "textprocessing.html" . }}
2023-02-24 03:03:46 +00:00
{{partial "related.html" .}}
2021-07-18 13:35:42 +00:00
</article>
{{partial "footer.html" .}}
</div>
</body>
</html>