13 lines
294 B
HTML
13 lines
294 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ config.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p></p>
|
|
|
|
{% set blog = get_section(path="blog/_index.md") %}
|
|
{% for post in blog.pages %}
|
|
{{ post.date }} <a href="{{ post.permalink }}">{{ post.title }}</a><br>
|
|
{% endfor %}
|
|
{% endblock %}
|