mirror of
https://forge.fsky.io/wl/pages.git
synced 2025-04-19 17:03:41 -05:00
14 lines
394 B
HTML
14 lines
394 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block title %}
|
|
<title>{{ config.title }} - {{ page.title }}</title>
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="post">
|
|
<h1 class="post-title">{{ page.title }}</h1>
|
|
<h2 class="post-date">{{ page.date | date(format="%Y-%m-%d") }}</h2>
|
|
{{ page.content | replace(from="%5B", to="[") | replace(from="%5D", to="]") | safe }}
|
|
</div>
|
|
|
|
{% endblock content %}
|