feat: Added {{> scripts}} partial that reads params.scripts.

This commit is contained in:
Spencer Brower
2026-08-04 11:24:57 -04:00
parent 2af8c68339
commit 2ac1d767cf
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -1,6 +1,7 @@
## High priority
- Polish existing features before moving on to new ones.
- [ ] Do mustache's whitespace rules actually suit us, or should we make our own?
- [x] `{{>title}}` default partial? `{{site.title}} | {{ page.title }}`
- [ ] implicit titles (Set when missing?)
- [ ] create a default `head.html`.
+2 -1
View File
@@ -6,7 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{> title}}</title>
{{> opengraph}}
{{> styles }}
{{> styles}}
{{> scripts}}
</head>
<body>
+1
View File
@@ -0,0 +1 @@
{{params.scripts}}