libreddit/templates/wall.html

14 lines
335 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block title %}{{ msg }}{% endblock %}
{% block sortstyle %}{% endblock %}
{% block content %}
<div id="wall">
<h1>{{ title }}</h1>
2021-11-24 07:23:29 +01:00
<br>
<p>{{ msg }}</p>
2021-11-24 07:23:29 +01:00
<form action="/r/{{ sub }}?redir={{ url }}" method="POST">
<input id="save" type="submit" value="Continue">
2021-11-24 07:23:29 +01:00
</form>
</div>
{% endblock %}