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