Skip to content

Commit e67402f

Browse files
committed
add latest release and release date to website, fixes #329
1 parent 96c98fc commit e67402f

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

_layouts/default.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<body id='{{ page.id }}'>
77
<div id='wrap'>
88
{% include navbar.html %}
9+
{% include release-banner.html %}
910
<div id='grid-wrapper'>
1011
<div id='content'>
1112
{{ content }}

blog.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
---
66

77
{% for post in site.posts %}
8-
<div class='post'>
9-
<h1><a href='{{ post.url }}'>{{ post.title }}</a></h1>
10-
<p class='meta'>
11-
Posted by <a href='{{ post.author_url }}'>{{ post.author }}</a>
8+
<div class="post">
9+
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
10+
<p class="meta">
11+
Posted by <a href="{{ post.author_url }}">{{ post.author }}</a>
1212
on <strong>{{ post.publish_date }}</strong>
13-
<a href='{{ post.url }}' title='Post permalink'>#</a>
13+
<a href="{{ post.url }}" title="Post permalink">#</a>
1414
</p>
1515
{{ post.excerpt }}
16-
<a href='{{ post.url }}' class='read-more-link' title='Read more link'>Read more…</a>
16+
<a href="{{ post.url }}" class="read-more-link" title="Read more link">Read more…</a>
1717
</div>
1818
{% endfor %}

0 commit comments

Comments
 (0)