This repository has been archived on 2024-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
resume/layouts/_default/baseof.html

17 lines
435 B
HTML
Raw Normal View History

2023-12-06 22:56:56 +03:00
<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<title>{{ .Site.Title }}</title>
<meta name="viewport" content="width=device-width">
<meta name=“description” content="{{ .Site.Params.Description }}"/>
<meta charset="utf-8" />
{{ partial "style.html" . }}
2023-12-06 23:03:13 +03:00
{{ partial "analytics.html" . }}
2023-12-06 22:56:56 +03:00
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>