refactor: The <title> tag is now configured through a default partial.

This commit is contained in:
Spencer Brower
2026-08-03 17:07:36 -04:00
parent e7bb5126cb
commit 8c1f7647a1
4 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{title}}</title>
<title>{{> title}}</title>
{{> head}}
<link rel="stylesheet" href="/css/main.css">
</head>
+1
View File
@@ -0,0 +1 @@
{{#site.title}}{{.}}{{#page.title}} | {{/page.title}}{{/site.title}}{{page.title}}