Basic posts

main
~erin 2023-04-16 14:24:36 -04:00
parent d1a87dc988
commit 1f4b04da92
Signed by: erin
GPG Key ID: 9A8E308CEFA37A47
5 changed files with 36 additions and 7 deletions

View File

@ -1,6 +1,8 @@
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contribute/">Contribute</a></li>
<li><a href="/blog/">Blog</a></li>
<li><a href="/rss.xml">RSS</a></li>
</ul>
</nav>

13
blog.md Normal file
View File

@ -0,0 +1,13 @@
---
layout: default.liquid
title: Blog
permalink: /blog/
---
# Blog Posts
{% for post in collections.posts.pages %}
## [{{ post.title}}](/{{ post.permalink }})
**{{ post.published_date }}**
{{post.description}}
{% endfor %}

8
contribute.md Normal file
View File

@ -0,0 +1,8 @@
---
layout: default.liquid
title: Contribute
permalink: /contribute/
---
# Contribute
## Contact

8
design.md Normal file
View File

@ -0,0 +1,8 @@
---
layout: default.liquid
title: Design
permalink: /design/
---
# Design
Stuff about the broader design of the OS and whatever.

View File

@ -1,11 +1,9 @@
---
layout: default.liquid
---
## Blog Posts
# {{ site.title }}
{% for post in collections.posts.pages %}
### [{{ post.title}}]({{ post.permalink }})
**{{ post.published_date }}**
## About
Misc. about the project stuff here.
Link to [design](/design/) and stuff.
{{post.description}}
{% endfor %}