mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
24 lines
1,023 B
HTML
24 lines
1,023 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "head.html" . }}
|
|
{{ $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">
|
|
</head>
|
|
<body class="">
|
|
<div class="wrapper">
|
|
{{ partial "header.html" . }}
|
|
<main class="main">
|
|
<div class="container">
|
|
{{ block "content" . }}{{ end }}
|
|
</div>
|
|
</main>
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
{{ partial "js.html" . }}
|
|
</body>
|
|
</html>
|