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
Serghei Cebotari 07f4f9f463
All checks were successful
Deploy resume page / build (push) Successful in 11s
Fix description tag
2023-12-15 08:57:35 +03:00

18 lines
492 B
HTML

<!DOCTYPE html>
<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
<head>
<title>{{ .Site.Title }}</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<meta name="viewport" content="width=device-width">
<meta name="description" content="{{ .Site.Params.Description }}"/>
<meta charset="utf-8" />
{{ partial "style.html" . }}
{{ partial "analytics.html" . }}
</head>
<body>
{{- block "main" . }}{{- end }}
</body>
</html>