aboutsummaryrefslogtreecommitdiff
path: root/site/src/main/jekyll/teamblog/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'site/src/main/jekyll/teamblog/index.md')
-rw-r--r--site/src/main/jekyll/teamblog/index.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/site/src/main/jekyll/teamblog/index.md b/site/src/main/jekyll/teamblog/index.md
index f1dbf7bf..c0e912a5 100644
--- a/site/src/main/jekyll/teamblog/index.md
+++ b/site/src/main/jekyll/teamblog/index.md
@@ -2,6 +2,15 @@
title: kamon | Team Blog | Documentation
layout: default
---
-Coming soon
---------
+<div class="container">
+ {% for post in site.posts %}
+ <div class="row">
+ <a href="{{ post.url }}"><h1>{{ post.title }}</h1></a>
+ <small>{{ post.date | date_to_long_string }}</small>
+ <hr>
+ {{ post.content }}
+ <hr>
+ </div>
+ {% endfor %}
+</div>