LoveIt/layouts/_default/baseof.html

25 lines
1,023 B
HTML
Raw Normal View History

2019-02-03 12:30:44 +01:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2019-08-04 15:53:35 +02:00
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
2019-08-09 15:25:13 +02:00
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
2019-08-04 15:53:35 +02:00
{{ partial "head.html" . }}
2019-08-11 19:36:19 +02:00
{{ $style := resources.Get "css/style.scss" | resources.ToCSS | resources.Minify}}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.10.1/css/all.min.css" integrity="sha256-fdcFNFiBMrNfWL6OcAGQz6jDgNTRxnrLEd4vJYFWScE=" crossorigin="anonymous">
2019-08-04 15:53:35 +02:00
</head>
<body class="">
<div class="wrapper">
2019-08-05 15:15:01 +02:00
{{ partial "header.html" . }}
2019-08-04 15:53:35 +02:00
<main class="main">
<div class="container">
{{ block "content" . }}{{ end }}
</div>
</main>
{{ partial "footer.html" . }}
</div>
2019-08-11 19:36:19 +02:00
{{ partial "js.html" . }}
2019-08-04 15:53:35 +02:00
</body>
2019-02-03 12:30:44 +01:00
</html>