-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's still very rudimentary, but now there's enough there that it's feasible to post new content.
- Loading branch information
Showing
9 changed files
with
149 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
title: 'Silent Selene Blog', | ||
description: 'Keep up with Silent Selene news and new features.' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
---json | ||
{ | ||
"permalink": "feed.xml", | ||
"eleventyExcludeFromCollections": true, | ||
"metadata": { | ||
"subtitle": "I am writing about my experiences as a naval navel-gazer.", | ||
"language": "en", | ||
"url": "https://news.silentselene.net/", | ||
"author": { | ||
"name": "Boaty McBoatFace", | ||
"email": "[email protected]" | ||
} | ||
} | ||
} | ||
--- | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<feed xmlns="http://www.w3.org/2005/Atom" xml:base="{{ metadata.url }}"> | ||
<title>{{ site_info.title }}</title> | ||
<subtitle>News and new features at Silent Selene.</subtitle> | ||
<link href="{{ permalink | absoluteUrl(metadata.url) }}" rel="self"/> | ||
<link href="{{ metadata.url }}"/> | ||
<updated>{{ collections.posts | getNewestCollectionItemDate | dateToRfc3339 }}</updated> | ||
<id>{{ metadata.url }}</id> | ||
{%- for post in collections.posts | reverse %} | ||
{%- set absolutePostUrl = post.url | absoluteUrl(metadata.url) %} | ||
<entry> | ||
<title>{{ post.data.title }}</title> | ||
<link href="{{ absolutePostUrl }}"/> | ||
<updated>{{ post.date | dateToRfc3339 }}</updated> | ||
<id>{{ absolutePostUrl }}</id> | ||
<content xml:lang="{{ metadata.language }}" type="html">{{ post.templateContent | htmlToAbsoluteUrls(absolutePostUrl) }}</content> | ||
</entry> | ||
{%- endfor %} | ||
</feed> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
// TODO: Import fonts from main site | ||
header | ||
background-color: #420080 | ||
min-height: 50px | ||
display: flex | ||
align-items: center | ||
margin: 0 0 5px | ||
|
||
.home-link | ||
display: block | ||
color: white | ||
// TODO: Import EB Garamond from main site | ||
font: 600 27px "EB Garamond", "Times New Roman", serif | ||
margin: auto 10px | ||
margin-block: 5px 5px | ||
text-decoration: none | ||
|
||
main | ||
max-width: 800px | ||
|
||
.post-metadata | ||
font: 200 14px "Lato", "Arial", sans-serif |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters