Revert "Remove telegrams"

This commit is contained in:
RealAngeleno
2023-07-15 23:03:13 -07:00
committed by GitHub
parent 7feb101bbf
commit af6bb09031
8 changed files with 192 additions and 0 deletions

12
templates/important.html Normal file
View File

@@ -0,0 +1,12 @@
<div class="ban">
{% for telegram in telegrams %}
<div style="padding: 10px;">
<cite><time datetime="{{ telegram.created_at|date('%Y-%m-%dT%H:%M:%S') }}{{ timezone() }}">{{ post.time|date(config.post_date) }}</time></cite>
<p>{{ telegram.message }}</p>
</div>
<hr>
{% endfor %}
<div style="padding:20px;text-align:center;">
<a href="{{ redirect }}">{%trans 'Return' %}</a>
</div>
</div>