Basic posts
parent
d1a87dc988
commit
1f4b04da92
|
@ -1,6 +1,8 @@
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<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>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
|
@ -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 %}
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
layout: default.liquid
|
||||||
|
title: Contribute
|
||||||
|
permalink: /contribute/
|
||||||
|
---
|
||||||
|
# Contribute
|
||||||
|
|
||||||
|
## Contact
|
|
@ -0,0 +1,8 @@
|
||||||
|
---
|
||||||
|
layout: default.liquid
|
||||||
|
title: Design
|
||||||
|
permalink: /design/
|
||||||
|
---
|
||||||
|
|
||||||
|
# Design
|
||||||
|
Stuff about the broader design of the OS and whatever.
|
10
index.md
10
index.md
|
@ -1,11 +1,9 @@
|
||||||
---
|
---
|
||||||
layout: default.liquid
|
layout: default.liquid
|
||||||
---
|
---
|
||||||
## Blog Posts
|
# {{ site.title }}
|
||||||
|
|
||||||
{% for post in collections.posts.pages %}
|
## About
|
||||||
### [{{ post.title}}]({{ post.permalink }})
|
Misc. about the project stuff here.
|
||||||
**{{ post.published_date }}**
|
Link to [design](/design/) and stuff.
|
||||||
|
|
||||||
{{post.description}}
|
|
||||||
{% endfor %}
|
|
||||||
|
|
Loading…
Reference in New Issue