14 lines
576 B
HTML
14 lines
576 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
{{ $title := print .Site.Title " | " .Title }}
|
|
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
|
{{/* scss compiling */}}
|
|
{{ $options := (dict "targetPath" "css/style.css" "outputStyle" "compressed") }}
|
|
{{ $style := resources.Get "scss/main.scss" | resources.ToCSS $options }}
|
|
{{ template "_internal/twitter_cards.html" . }}
|
|
<link href='{{ $style.RelPermalink }}' rel="stylesheet">
|
|
<title>{{ $title }}</title>
|
|
{{- partial "octocss.html" . -}}
|
|
</head>
|