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

15 lines
346 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>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8" />
2023-11-23 22:27:56 +03:00
{{ partial "head/style.html" . }}
2023-11-22 23:47:45 +03:00
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>