hugo-page-test/themes/tsc_vfl/layouts/partials/page/head.html

13 lines
659 B
HTML
Raw Normal View History

2023-01-19 17:21:20 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ $options := (dict "targetPath" "main.css" "outputStyle" "compressed" "enableSourceMap" (not hugo.IsProduction)) }}
{{ $scss := resources.Get "main.scss" | resources.ToCSS $options }}
2023-01-20 16:59:10 +00:00
<link rel="stylesheet" type="text/css" href="{{ $scss.RelPermalink }}">
2023-01-19 17:21:20 +00:00
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title>
2023-01-21 22:29:45 +00:00
<script defer src="{{ relURL "js/jquery-3.6.3.min.js" }}"></script>
<script defer src="{{ relURL "js/slider.js" }}"></script>
2023-01-19 17:21:20 +00:00
</head>