40 lines
1.2 KiB
HTML
40 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ if .Site.Params.favicon }}
|
|
<link rel="icon" href="{{ .Site.BaseURL }}img/{{ .Site.Params.favicon }}">
|
|
{{ end }}
|
|
|
|
<title>{{ .Title}}{{if .IsPage}} - {{ .Site.Title }}{{ end }}</title>
|
|
|
|
{{ $main := resources.Get "sass/main.scss" | toCSS | minify }}
|
|
<link rel="stylesheet" href="{{ $main.RelPermalink }}">
|
|
<!--<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">-->
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/font-awesome.min.css"></script>
|
|
|
|
{{ block "config" . }} {{ end }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
<div class="container">
|
|
<div class="wrapper">
|
|
{{ block "main" . }} {{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
<!--<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>-->
|
|
<script src="{{ .Site.BaseURL }}/js/jquery.min.js"></script>
|
|
<script src="{{ .Site.BaseURL }}/js/bootstrap.min.js"></script>
|
|
</body>
|
|
|
|
</html>
|