aboutsummaryrefslogtreecommitdiff
path: root/docs/_layouts/blog.html
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-06 18:11:11 +0200
committerGitHub <noreply@github.com>2016-10-06 18:11:11 +0200
commit10ff9494165210b22eb80e989fc10c3ebf393bae (patch)
treeca9fa2f142b8e06d681d65eaf5afa5b44c7d98fc /docs/_layouts/blog.html
parenteaa7f1730aa9da0aa7e4b2c4e86fbcc3acf26131 (diff)
parent237ddc31ab0281f9f2cddf598fc5f9af50f91f06 (diff)
downloaddotty-10ff9494165210b22eb80e989fc10c3ebf393bae.tar.gz
dotty-10ff9494165210b22eb80e989fc10c3ebf393bae.tar.bz2
dotty-10ff9494165210b22eb80e989fc10c3ebf393bae.zip
Merge pull request #1555 from felixmulder/topic/docs
Migrate wiki to docs dir
Diffstat (limited to 'docs/_layouts/blog.html')
-rw-r--r--docs/_layouts/blog.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/_layouts/blog.html b/docs/_layouts/blog.html
new file mode 100644
index 000000000..fde08e14e
--- /dev/null
+++ b/docs/_layouts/blog.html
@@ -0,0 +1,18 @@
+---
+layout: default
+---
+
+<h1 class="title">{{ page.title }}</h1>
+<h2 class="subtitle">{{ page.subTitle }}</h2>
+
+<div class="author-container {% if page.authorImg != null %} spaced {% endif %}">
+ {% if page.authorImg != null %}
+ <img src="{{ page.authorImg }}"/>
+ {% endif %}
+ <div class="author-info">
+ <div>{{ page.author }}</div>
+ <div>{{ page.date | date: '%B %d, %Y' }}</div>
+ </div>
+</div>
+
+{{ content }}