mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-25 15:38:54 +00:00

* Add Ukraini dialog * Fix lint * Make it more keyboard-user friendly * Change close element to button and add dialog as first element
25 lines
579 B
Markdown
25 lines
579 B
Markdown
---
|
|
layout: v2
|
|
title: Blog
|
|
bodyclass: blog-page
|
|
---
|
|
|
|
## 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="post-date">
|
|
{{ post.date | date_to_string }}
|
|
</div>
|
|
<div class="post-info">
|
|
<h3 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
<p>{{ post.description }} <span class="quiet">…</span></p>
|
|
</div>
|
|
</div>
|
|
{% unless forloop.last %}<hr />{% endunless %}
|
|
{% endfor %}
|