mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 05:36:07 +01:00
27 lines
740 B
HTML
27 lines
740 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.Language }}">
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
|
|
{{ block "body" . }}
|
|
<body class="{{ with .Page.Params.stylescope }}{{ . }}{{ end }}">
|
|
{{ end }}
|
|
|
|
<div class="container">
|
|
{{ partial "header.html" . }}
|
|
|
|
<div class="content">
|
|
{{ block "main" . }}{{ end }}
|
|
</div>
|
|
|
|
{{ block "footer" . }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div id="drops"></div>
|
|
{{ partial "javascript.html" . }}
|
|
<script type="speculationrules">{"prerender":[{"where":{"href_matches":"/*"},"eagerness":"moderate"}]}</script>
|
|
</body>
|
|
</html>
|