Files
hugo-profile/layouts/index.html
T
2020-10-12 22:42:39 +05:30

29 lines
868 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>{{- .Site.Title -}}</title>
<!-- 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">
<meta name="description" content="{{ .Site.Params.description }}">
{{ template "_internal/google_analytics.html" . }}
{{- partial "head.html" . -}}
</head>
<body>
{{- partial "sections/home.html" . -}}
{{- partial "sections/blog.html" . -}}
{{- partial "sections/about.html" . -}}
{{- partial "sections/do_things.html" . -}}
{{- partial "sections/projects.html" . -}}
{{- partial "sections/contact.html" . -}}
{{- partial "footer.html" . -}}
{{- partial "scripts.html" . -}}
</body>
</html>