mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
30 lines
709 B
HTML
30 lines
709 B
HTML
{{ $styles := resources.Get "css/baseof.css" | toCSS | minify }}
|
|
{{ $scripts := resources.Get "js/baseof.js" | js.Build | minify }}
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<link rel="stylesheet" href="{{ $styles.Permalink }}">
|
|
{{ block "styles" . }}{{ end }}
|
|
|
|
<title>
|
|
{{ block "title" . }}
|
|
{{ .Site.Title }}
|
|
{{ end }}
|
|
</title>
|
|
|
|
<script defer src="{{ $scripts.Permalink }}"></script>
|
|
{{ block "scripts" . }}{{ end }}
|
|
</head>
|
|
<body>
|
|
{{ partial "header.html" . }}
|
|
|
|
<main>
|
|
{{ block "main" . }}{{ end }}
|
|
</main>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</body>
|
|
</html> |