trying jekyll...

This commit is contained in:
nathanriggs 2019-01-06 23:55:54 -05:00
parent 7c87a88900
commit 784653373a
8 changed files with 32 additions and 0 deletions

6
_data/navigation.yml Normal file
View File

@ -0,0 +1,6 @@
- name: Home
link: /
- name: About
link: /about.html
- name: Blog
link: /blog.html

0
_data/navigation.yml~ Normal file
View File

7
_layouts/post.html Normal file
View File

@ -0,0 +1,7 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>
{{ content }}

0
_layouts/post.html~ Normal file
View File

View File

@ -0,0 +1,5 @@
---
layout: post
author: nathan
---
As you might imagine, I'm trying to figure out Jekyll. Once I do, I'll start blogging about changes to and struggles with the AppleIIAsmLib. Thanks for watching!

View File

14
blog.html Normal file
View File

@ -0,0 +1,14 @@
---
layout: default
title: Blog
---
<h1>Latest Posts</h1>
<ul>
{% for post in site.posts %}
<li>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt }}</p>
</li>
{% endfor %}
</ul>

0
blog.html~ Normal file
View File