forked from gocd/www.go.cd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
26 lines (20 loc) · 851 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: default
title: Blog
title_tag: Blog | GO Continuous Delivery
meta_tag_description: GO Continuous Delivery is a software development discipline where you automate all steps of building, testing, deploying and releasing software at anytime
meta_tag_keywords: continuous delivery, software development, blog, testing, deploying, go
header_follow: <a href="/feed/rss.xml"><img src="/images/feed-icon-28x28.png"/></a>
---
<ul class="posts">
{% for post in site.posts %}
{% unless post.draft %}
<li>
<a href="{{ post.url }}" class="title">{{ post.title }}</a> <span>{{ post.date | date_to_string }}</span>
{{ post.excerpt | remove: '<meta>'}}
<a href="{{ post.url }}">Read more</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<link rel="stylesheet" type="text/css" href="/css/blog.css">