summaryrefslogtreecommitdiff
path: root/layouts/unix-history/single.html
blob: fa8673be3262dee865667e868429a4e00c2cfde6 (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
26
27
28
29
30
31
{{ define "head"  }}
<a href="/unix-history">
{{- $header_rect := resources.Get "unix-history/header-top.png" }}
{{- $header_rect_180 := $header_rect.Resize "50x webp q90"}}
<img
  style="
         height: 1.5em;
         width: auto;
         margin-right: 0.5em;
         "
  src="{{ $header_rect_180.Permalink }}"
  ></a>

<b><i>History of Unix</i></b>
<hr>

{{ end }}
  
{{ define "main" }}

<article>
  {{ .Page.Content }}
</article>

{{- if .Params.primary_menu  }}
  {{ partial "single/bottom_nav.html" (dict "menuID" .Page.Params.primary_menu "page" .) }}
{{- end }}

{{ partial "single/dates.html" . }}

{{- end }}