baseof.html (685B)
1 <html> 2 <head> 3 <link rel="stylesheet" href="/style.css"> 4 <link rel="icon" href="/alice.ico"> 5 6 <meta charset="UTF-8"> 7 <title>{{ site.Title }}/blog</title> 8 <meta name="viewport" content="width=device-width,initial-scale=1"> 9 </head> 10 11 <body> 12 <main> 13 {{- block "nav" . }} 14 <nav> 15 <a href="{{ site.BaseURL }}"><<HOME</a 16 ><a href="{{ site.BaseURL }}blog"><blog</a 17 > 18 </nav> 19 {{- end }} 20 <h1>{{ .Title}}</h1> 21 {{- block "main" . }}{{- end }} 22 </main> 23 </body> 24 </html> 25 26 {{ define "about" }} 27 {{ end }} 28 29 {{ define "main" }} 30 {{ .Content }} 31 {{ end }}