blob: 855124b4ae9140f17b9eee97e7d2f3f5cdc7c655 (
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="/cool-emacs">
{{- $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>Cool Emacs</i></b></a>
<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 }}
|