Skip to content

Commit 2783517

Browse files
committed
Fixes #39
1 parent 2176d7a commit 2783517

6 files changed

Lines changed: 31 additions & 7 deletions

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# ignore jekyll output
2-
_site
2+
_site
3+
.vscode

_posts/2015-12-09-initial-public-release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: 'Initial public release'
44
version: 0.5.0.0
5-
categories: [release]
5+
categories: [release, news]
66
date: 2015-12-09 00:00:00 -0800
77
author: martinwoodward
88
download: true
@@ -27,4 +27,4 @@ http://www.OpenLiveWriter.org or by watching this repo and subscribing to notifi
2727
### Downloads
2828
[Source Code (zip)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.0.0.zip)
2929

30-
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.0.0.tar.gz)
30+
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.0.0.tar.gz)

_posts/2015-12-17-blogger-v3-api-support.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: 'Blogger V3 API Support'
44
version: 0.5.1.2
5-
categories: [release]
5+
categories: [release, news]
66
date: 2015-12-17 00:00:00 -0800
77
author: martinwoodward
88
download: true
@@ -14,4 +14,4 @@ To force an update, visit [http://openlivewriter.org](http://openlivewriter.org)
1414
### Downloads
1515
[Source Code (zip)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.1.2.zip)
1616

17-
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.1.2.tar.gz)
17+
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.1.2.tar.gz)

_posts/blog/kweaver01_18_2016.md renamed to _posts/2016-01-16-Contributing-to-Open-Live-Writer.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
---
2+
layout: default
3+
title: 'Contributing to Open Live Writer'
4+
categories: [blog]
5+
date: 2016-01-16 00:00:00 -0800
6+
author: kathweaver
7+
download: true
8+
---
9+
110
###Contributing to Open Live Writer
211
I have been using the original Live Writer since it came out, and loved it. I was
312
an avid user of the plug-ins too.

blog/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: default
3+
title: Blog
4+
permalink: /blog/
5+
download: true
6+
---
7+
8+
{% for post in site.posts %}
9+
{% if post.categories contains 'blog' %}
10+
{% include news_item.html %}
11+
{% endif %}
12+
{% endfor %}

news/index.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66
---
77

88
{% for post in site.posts %}
9-
{% include news_item.html %}
10-
{% endfor %}
9+
{% if post.categories contains 'news' %}
10+
{% include news_item.html %}
11+
{% endif %}
12+
{% endfor %}

0 commit comments

Comments
 (0)