mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 06:30:03 +08:00
20 lines
525 B
Markdown
20 lines
525 B
Markdown
---
|
|
title: "Blog"
|
|
description: "A list of latest blog about the feature of SpaceVim and tutorials of using vim."
|
|
---
|
|
|
|
# Blog
|
|
|
|
Here you can learn more about SpaceVim with our tutorials and find out what's
|
|
going on.
|
|
|
|
<ul>
|
|
{% for post in site.posts %}
|
|
<li>
|
|
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
|
|
<span class="post-date">{{ post.date | date_to_string }}</span>
|
|
<h3>{{ post.excerpt | truncatewords: 100 }}</h3>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|