mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
14 lines
No EOL
382 B
HTML
14 lines
No EOL
382 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block header_ext %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{{sidebar}}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 id="alt-layout">{{news_entry.topic.name}}: {{news_entry.title}}</h1>
|
|
<p class="newsDate">By {{news_entry.author.username}} on {{news_entry.date_posted|time}}</p>
|
|
<p class="newsSummary">{{news_entry.body}}</p>
|
|
{% endblock %} |