mirror of
https://git.adityakumar.xyz/adityakumar.xyz.git
synced 2024-11-09 10:39:44 +00:00
44 lines
1.5 KiB
HTML
44 lines
1.5 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="{{ .Site.LanguageCode }}">
|
||
|
<head>
|
||
|
{{ block "head" . }}
|
||
|
{{ partial "head/metadata.html" . }}
|
||
|
{{ if .Site.Params.plausible }}{{ partial "head/plausible.html" . }}{{ end }}
|
||
|
{{ partial "head/openGraph.html" . }}
|
||
|
{{ partial "head/favicons.html" . }}
|
||
|
{{ partial "head/css.html" . }}
|
||
|
{{ end }}
|
||
|
<!-- Include page specific css -->
|
||
|
{{ block "customCSS" . }}
|
||
|
{{ end }}
|
||
|
</head>
|
||
|
<body>
|
||
|
<section id="top" class="section">
|
||
|
<!-- Begin Title -->
|
||
|
<div class="container hero {{ if .Site.Params.fadeIn | default true }} fade-in one {{ end }}">
|
||
|
{{ block "title" . }}
|
||
|
<h1 class="bold-title is-1">{{ .Title | markdownify }}</h1>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<!-- End Title -->
|
||
|
<div class="section {{ if .Site.Params.fadeIn | default true }} fade-in two {{ end }}">
|
||
|
{{ partial "nav.html" . }}
|
||
|
|
||
|
{{ block "main" . }}
|
||
|
{{ end }}
|
||
|
|
||
|
{{ block "footer" . }}
|
||
|
{{ partial "top-icon-with-hr.html" . }}
|
||
|
{{ partial "footer/text.html" . }}
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
</section>
|
||
|
{{ block "js-include" . }}
|
||
|
{{ partial "footer/scripts.html" . }}
|
||
|
{{ end }}
|
||
|
<!-- Include page specific scripts -->
|
||
|
{{ block "customScripts" . }}
|
||
|
{{ end }}
|
||
|
</body>
|
||
|
</html>
|