24 lines
551 B
HTML
24 lines
551 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{{- partial "head.html" . -}}
|
|
<meta name="description" content="{{ .Params.description }}" />
|
|
|
|
<!-- stylesheets -->
|
|
<link rel="stylesheet" href="/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/css/blog.css">
|
|
|
|
<!-- Fonts -->
|
|
<link href="https://fonts.googleapis.com/css2?family=PT+Serif&display=swap" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
{{- partial "header.html" . -}}
|
|
{{- block "main" . -}}{{- end }}
|
|
{{- partial "footer.html" . -}}
|
|
{{- partial "scripts.html" . -}}
|
|
|
|
</body>
|
|
|
|
</html> |