1
0
hugos-resume/layouts/_default/baseof.html

16 lines
398 B
HTML
Raw Normal View History

2023-11-22 23:47:45 +03:00
<!DOCTYPE html>
2023-11-23 22:27:56 +03:00
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
2023-11-22 23:47:45 +03:00
<head>
<title>{{ .Site.Title }}</title>
2023-12-03 23:11:49 +03:00
<meta name="viewport" content="width=device-width">
2023-12-03 23:18:52 +03:00
<meta name=“description” content="{{ .Site.Params.Description }}"/>
2023-11-22 23:47:45 +03:00
<meta charset="utf-8" />
2023-12-02 23:16:25 +03:00
{{ partial "style.html" . }}
2023-11-22 23:47:45 +03:00
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>