LoveIt/layouts/_default/baseof.html

29 lines
816 B
HTML
Raw Normal View History

2019-08-05 15:15:01 +02:00
{{ $cdn_url := ""}}
{{ if eq ( getenv "HUGO_ENV" ) "production" }}
{{ with .Site.Params.cdn_url }}
{{ $cdn_url = .}}
{{ end }}
{{ end }}
{{ .Scratch.Set "cdn_url" $cdn_url }}
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" . }}
</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>
</body>
2019-02-03 12:30:44 +01:00
</html>