mirror of
https://github.com/nathanriggs/AppleIIAsm-Collection.git
synced 2024-11-26 21:51:26 +00:00
trying jekyll...
This commit is contained in:
parent
7c87a88900
commit
784653373a
6
_data/navigation.yml
Normal file
6
_data/navigation.yml
Normal file
@ -0,0 +1,6 @@
|
||||
- name: Home
|
||||
link: /
|
||||
- name: About
|
||||
link: /about.html
|
||||
- name: Blog
|
||||
link: /blog.html
|
0
_data/navigation.yml~
Normal file
0
_data/navigation.yml~
Normal file
7
_layouts/post.html
Normal file
7
_layouts/post.html
Normal 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
0
_layouts/post.html~
Normal file
5
_posts/2018-01-06-first-post.md
Normal file
5
_posts/2018-01-06-first-post.md
Normal 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!
|
0
_posts/2018-01-06-first-post.md~
Normal file
0
_posts/2018-01-06-first-post.md~
Normal file
14
blog.html
Normal file
14
blog.html
Normal 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
0
blog.html~
Normal file
Loading…
Reference in New Issue
Block a user