-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 1.09 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
32
33
---
layout: default
title: "GeoDienstenCentrum Blog"
description: GeoDienstenCentrum blog over toegankelijke ruimtelijke informatie en informatica
tags:
- webrichtlijnen
- gis
- toegankelijkheid
- geo
- wcag2
---
<div id="blog" itemscope itemtype="http://schema.org/Blog">
<p itemprop="description">Een overzicht van de (voorlopig alleen engelstalige) artikelen op deze website.</p>
<ul class="posts">
{% for post in site.posts limit:3 %}
<li itemprop="blogPost" itemscope itemtype="http://schema.org/BlogPosting">
<time class="meta" itemprop="dateCreated" datetime="{{post.date | date: '%Y-%m-%d'}}">{{ post.date | date_to_string }}</time>
<a href="{{ post.url }}" itemprop="url name">{{ post.title }}</a>
<p>{{ post.description }}
{% capture readtime %} {{ post.content | number_of_words | plus:91 | divided_by:180 }} {% endcapture %}
{% if readtime != '0' %}
<span class="readtime">(ongeveer{{ readtime }} min. lezen)</span>
{% endif %}
</p>
</li>
{% endfor %}
</ul>
<p>Meer (oudere) artikelen zijn te vinden in het <a href="/blog.html">overzicht</a>.</p>
</div>