15 lines
453 B
HTML
15 lines
453 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ config.title }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<p>
|
|
She looked herself in the mirror and plunged the pen drive into her neck and felt the weight of sapience lift from her shoulders, and then the high wore off.
|
|
</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 %}
|