split up index to fit baseof.html
This commit is contained in:
parent
9cb2b8337e
commit
3daecd6eea
3 changed files with 39 additions and 35 deletions
35
themes/one-pager/layouts/_default/baseof.html
Normal file
35
themes/one-pager/layouts/_default/baseof.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- SEO -->
|
||||
{{ partial "seo.html" . }}
|
||||
|
||||
{{ $style := resources.Get "css/style.css" | resources.Minify | fingerprint }}
|
||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
||||
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<main>
|
||||
|
||||
{{ block "main" . }}{{ end }}
|
||||
|
||||
</main>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
|
||||
|
||||
|
||||
{{ $js := resources.Get "js/scripts.js" | resources.Minify | fingerprint }}
|
||||
<script src="{{ $js.RelPermalink }}"></script>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue