20 lines
619 B
Markdown
20 lines
619 B
Markdown
|
---
|
|||
|
title: "Blog"
|
|||
|
description: "A list of the latest blog posts about the features of SpaceVim and tutorials on using vim."
|
|||
|
---
|
|||
|
|
|||
|
# [Home](../) >> Blog
|
|||
|
|
|||
|
Here you can learn more about SpaceVim with our tutorials and find out what's
|
|||
|
going on. Feel free to [feed this blog via RSS](../../feed.xml):
|
|||
|
|
|||
|
<ul>
|
|||
|
{% for post in site.categories.blog %}
|
|||
|
<li>
|
|||
|
<h5><a href="{{ post.url }}">{{ post.title }}</a></h5>
|
|||
|
<span class="post-date">{{ post.date | date_to_string }}</span>
|
|||
|
<p>{{ post.description | truncatewords: 100 }}</p>
|
|||
|
</li>
|
|||
|
{% endfor %}
|
|||
|
</ul>
|