24 lines
598 B
Markdown
24 lines
598 B
Markdown
---
|
|
layout: default
|
|
title: Blog
|
|
---
|
|
|
|
## Leaflet Developer Blog
|
|
|
|
The main place for all important Leaflet-related news, tutorials, tips and development notes. [Subscribe to Atom feed](atom.xml)
|
|
|
|
---
|
|
|
|
{% for post in site.posts %}
|
|
<div class="clearfix">
|
|
<div class="span-3 post-date">
|
|
{{ post.date | date_to_string }}
|
|
</div>
|
|
<div class="span-17 last">
|
|
<h3 class="post-title"><a href="{{ post.url | replace_first: '/', '' }}">{{ post.title }}</a></h3>
|
|
<p>{{ post.description }} <span class="quiet">…</span></p>
|
|
</div>
|
|
</div>
|
|
{% unless forloop.last %}<hr />{% endunless %}
|
|
{% endfor %}
|