Skip to content

Commit d8cbb9d

Browse files
committed
Add news page and gitignore file
1 parent 0356c2b commit d8cbb9d

6 files changed

Lines changed: 94 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# ignore jekyll output
2+
_site

_includes/news_item.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<article>
2+
<h2>
3+
<a href="{{ post.url }}">
4+
{{ post.title }}
5+
</a>
6+
</h2>
7+
<div class="post-meta">
8+
<span class="post-date">
9+
{{ post.date | date_to_string }}
10+
</span>
11+
<a href="https://github.com/{{ post.author }}" class="post-author">
12+
<img src="https://github.com/{{ post.author }}.png" class="avatar" alt="{{ post.author }} avatar" width="24" height="24">
13+
{{ post.author }}
14+
</a>
15+
</div>
16+
<div class="post-content">
17+
{{ post.content }}
18+
</div>
19+
</article>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
layout: default
3+
title: 'Initial public release'
4+
version: 0.5.0.0
5+
categories: [release]
6+
date: 2015-12-09 00:00:00 -0800
7+
author: martinwoodward
8+
download: true
9+
---
10+
First open source release of Open Live Writer!
11+
12+
### Installation
13+
14+
Install from http://www.OpenLiveWriter.org
15+
16+
You can install the latest version of Open Live Writer alongside an older version of Windows Live Writer.
17+
18+
### Details
19+
20+
For a list of known issues see GitHub or take a
21+
look at the roadmap to see what the current plans are.
22+
23+
For the latest news and updates about Open Live Writer, you can follow us on Twitter
24+
(@OpenLiveWriter), by keeping an eye on the website
25+
http://www.OpenLiveWriter.org or by watching this repo and subscribing to notifications.
26+
27+
### Downloads
28+
[Source Code (zip)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.0.0.zip)
29+
30+
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.0.0.tar.gz)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
layout: default
3+
title: 'Blogger V3 API Support'
4+
version: 0.5.1.2
5+
categories: [release]
6+
date: 2015-12-17 00:00:00 -0800
7+
author: martinwoodward
8+
download: true
9+
---
10+
This release provides the initial version of Blogger support using their latest API to unblock users of Blogger.
11+
12+
To force an update, visit [http://openlivewriter.org](http://openlivewriter.org) then download and run the installer. Otherwise if you start Open Live Writer and wait a minute or so, next time you restart Live Writer you should be running the latest version (go to Help, About Open Live Writer to see what version you are on)
13+
14+
### Downloads
15+
[Source Code (zip)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.1.2.zip)
16+
17+
[Source Code (tar.gz)](https://github.com/OpenLiveWriter/OpenLiveWriter/archive/0.5.1.2.tar.gz)

news/index.html

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

stylesheets/stylesheet.css

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,8 +357,24 @@ Full-Width Styles
357357
background: #212121;
358358
}
359359

360+
article {
361+
padding: 40px 0 30px;
362+
}
363+
364+
article h2 {
365+
padding-bottom: 0px;
366+
}
360367

368+
.post-meta {
369+
padding: 5px 0;
370+
font-weight: 600;
371+
}
361372

373+
.avatar {
374+
border-radius: 3px;
375+
display: inline-block;
376+
vertical-align: middle;
377+
}
362378
/*******************************************************************************
363379
Small Device Styles
364380
*******************************************************************************/

0 commit comments

Comments
 (0)