-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.23 KB
/
index.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
27
28
29
30
31
---
layout: page
title: Development Blog
tagline: some things we do
---
{% include JB/setup %}
<div class="well well-lg" style="font-style: italic">
Hello, this is the developer blog of <a href="//www.thequestionmark.org">Questionmark</a>, where
we discuss technical challenges and solutions.<br>
If instead you're interested in using our API, please see the <a href="/api-docs">API documentation</a>.
</div>
{% for post in site.posts %}
<div class="panel panel-default">
<div class="panel-heading">
<small class="pull-right text-muted">
{{ post.date | date_to_string }}{% if post.author %} by <a href="https://github.com/{{ post.author }}">{{ post.author }}</a>{% endif %}
</small>
<h3 class="panel-title">
<a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a>
{% if post.tagline %}<small>{{ post.tagline }}</small>{% endif %}
</h3>
</div>
<div class="panel-body">
{% if post.image %}<img src="{{ post.image }}" class="post-preview-image" alt="" />{% endif %}
{% if post.teaser %}{{ post.teaser }}{% else %}{{ post.content | strip_html | truncatewords: 80 }}{% endif %}
<a href="{{ BASE_PATH }}{{ post.url }}">read more »</a>
</div>
</div>
{% endfor %}