blob: ecfb175fb2669d60a5f196c340864c4006360645 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{ if in .Params.tags "basic" }}
{{ with .NextInSection }}
<a class=next href="{{ .RelPermalink }}">Next: {{ .Title }}</a>
{{ end }}
{{ with .PrevInSection }}
<span class=prev>Or Previous: <a href="{{ .RelPermalink }}">{{ .Title }}</a></span>
{{ end }}
{{ end }}
{{ if in .Params.tags "mail" }}
{{ with .NextInSection }}
<a class=next href="{{ .RelPermalink }}">Next: {{ .Title }}</a>
{{ end }}
{{ with .PrevInSection }}
<span class=prev>Or Previous: <a href="{{ .RelPermalink }}">{{ .Title }}</a></span>
{{ end }}
{{ end }}
</main>
<footer><a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a></footer>
</body>
</html>
|