mirror of
https://github.com/kirsle/kirsle.net
synced 2024-11-14 04:49:29 +00:00
13 lines
245 B
HTML
13 lines
245 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}My Guestbook{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>My Guestbook</h1>
|
|
|
|
{{ include_page("comment.partial_index",
|
|
thread="guestbook",
|
|
subject="My Guestbook",
|
|
header=False,
|
|
) | safe }}
|
|
|
|
{% endblock %} |