12 lines
226 B
Markdown
12 lines
226 B
Markdown
---
|
|
title: "/var/log"
|
|
layout: default
|
|
---
|
|
|
|
{% assign posts = site.logs | reverse %}
|
|
{% for post in posts %}
|
|
<h2><a href="{{ post.url }}">{{ post.title }}, {{ post.date | date: "%F" }}</a></h2>
|
|
{{ post.excerpt }}
|
|
|
|
{% endfor %}
|