2024-01-29 04:53:34 +00:00
|
|
|
<!DOCTYPE html>
|
2024-02-12 16:32:58 +00:00
|
|
|
<html lang="{{ .Language }}">
|
2024-01-29 04:53:34 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
|
|
|
<link rel="stylesheet" href="/css/style.css" type="text/css" />
|
|
|
|
|
|
|
|
{{ with .OutputFormats.Get "rss" -}}
|
|
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
|
|
|
{{ end -}}
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2024-02-08 15:26:15 +00:00
|
|
|
|