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 ## High priority
- Polish existing features before moving on to new ones. - 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 }}` - [x] `{{>title}}` default partial? `{{site.title}} | {{ page.title }}`
- [ ] implicit titles (Set when missing?) - [ ] implicit titles (Set when missing?)
- [ ] create a default `head.html`. - [ ] create a default `head.html`.
+1
View File
@@ -7,6 +7,7 @@
<title>{{> title}}</title> <title>{{> title}}</title>
{{> opengraph}} {{> opengraph}}
{{> styles}} {{> styles}}
{{> scripts}}
</head> </head>
<body> <body>
+1
View File
@@ -0,0 +1 @@
{{params.scripts}}