baseof.html (847B)
1 <!DOCTYPE html> 2 <html lang="{{ .Site.LanguageCode | default "en-us" }}"> 3 <head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 7 <title>{{ .Title }}</title> 8 <link rel="shortcut icon" href="/images/ico.png" type="image/ico"> 9 {{ with .Site.Params.description }}<meta name="description" content="{{ . }}">{{ end }} 10 {{ with .Site.Params.author }}<meta name="author" content="{{ . }}">{{ end }} 11 <link rel="stylesheet" href="{{ "css/style.css" | relURL }}"> 12 {{ with .OutputFormats.Get "RSS" -}} 13 {{ printf `<link rel="%s" type="%s" href="%s" title="%s">` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }} 14 {{- end }} 15 </head> 16 <body> 17 {{ partial "header" . }} 18 {{ block "main" . }}{{ end }} 19 {{ partial "footer" . }} 20 </body> 21 </html>