diff options
author | Alexis Hovorka <[email protected]> | 2022-10-24 22:14:06 -0600 |
---|---|---|
committer | Alexis Hovorka <[email protected]> | 2022-10-24 22:14:06 -0600 |
commit | 634301e45433bf06fcdae500d51275677e568adb (patch) | |
tree | f7a5a3051648322c6243420667b120440e7fa1df /globals |
Initial commit
Diffstat (limited to 'globals')
-rw-r--r-- | globals/eleventyComputed.json | 3 | ||||
-rw-r--r-- | globals/layout.js | 1 | ||||
-rw-r--r-- | globals/metadata.json | 10 |
3 files changed, 14 insertions, 0 deletions
diff --git a/globals/eleventyComputed.json b/globals/eleventyComputed.json new file mode 100644 index 0000000..a16851f --- /dev/null +++ b/globals/eleventyComputed.json @@ -0,0 +1,3 @@ +{ + "pageTitle": "{{ title | safe }} – {{ metadata.title | safe }}" +} diff --git a/globals/layout.js b/globals/layout.js new file mode 100644 index 0000000..259148a --- /dev/null +++ b/globals/layout.js @@ -0,0 +1 @@ +module.exports = "post.njk"; diff --git a/globals/metadata.json b/globals/metadata.json new file mode 100644 index 0000000..5c80e0c --- /dev/null +++ b/globals/metadata.json @@ -0,0 +1,10 @@ +{ + "title": "My Current Fascination", + "subtitle": "The blog of a wandering amateur", + "url": "https://blog.alexishovorka.com/", + "feedUrl": "https://blog.alexishovorka.com/feed.xml", + "author": { + "name": "Alexis Hovorka", + "email": "[email protected]" + } +} |