mirror of
https://github.com/Sped0n/bridget.git
synced 2026-04-17 03:29:31 -07:00
chore(params.toml): add website title parameter for better customization chore(baseof.html): update page title to use the website title parameter chore(nav.html): update navigation link to use the website title parameter
18 lines
417 B
HTML
18 lines
417 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{{ .Site.Params.title }}</title>
|
|
{{- partial "head/link.html" -}}
|
|
{{- partial "head/meta.html" -}}
|
|
{{- partial "head/seo.html" -}}
|
|
</head>
|
|
<body>
|
|
<div id="main">
|
|
{{- block "main" . -}}
|
|
{{- end -}}
|
|
</div>
|
|
</body>
|
|
</html>
|