blob: ceb08137746e969708f94f92aa6238cc3c319433 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{{- if not .Page.Params.noback }}
<nav class="back-link">
{{- if .Page.Params.hardback }}
<a href="/">← back to Homepage</a>
{{- else if in .Page.Params.Categories "star-trek" }}
<a href="/star-trek/">← back to Space Cadet Log</a>
{{- else if in .Page.Params.Category "site-info" }}
<a href="/site/">← Back to Site Info</a>
{{- else if in .Page.Params.Categories "site" }}
<a href="/site/">← Back to Site Info</a>
{{- else if in .Page.Params.Categories "bsd" }}
<a href="/bsd/">← Back to Daemonic BSD Site</a>
{{- else if in .Page.Params.Categories "blog" }}
<a href="/blog/">← Back to Michal's blog</a>
{{- else if in .Page.Params.Categories "article" }}
<a href="/articles/">← Back to Article Library</a>
{{- else if in .Page.Params.Categories "emacs" }}
<a href="/emacs/">← Back to C-X emacs</a>
{{- end }}
{{- if not .Page.Params.hardback }}
<br>
<a href="/">↞ back to Homepage</a>
{{- end }}
</nav>
{{- end }}
|