mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
23 lines
No EOL
1 KiB
HTML
23 lines
No EOL
1 KiB
HTML
<blockquote id="diario-{{ entry.id }}" class="diario {% if entry.spoiler %}spoiler{% endif %}">
|
|
<div class="left">
|
|
<p>
|
|
<span class="text">{{ entry.to_html() | safe }}</span>
|
|
</p>
|
|
<p>
|
|
<cite>—
|
|
{% if entry.author is not none %}
|
|
<a class="author known" href="{{ url_for("page_profile", name=entry.author.royal.username) }}">{{ entry.author.royal.username }}</a>
|
|
{% else %}
|
|
<span class="author anonymous">Anonimo</span>
|
|
{% endif %},
|
|
<span class="timestamp">{{ entry.timestamp.strftime('%Y-%m-%d %H:%M:%S %Z') }}</span>
|
|
{% if entry.saver is not none and entry.saver != entry.author %}
|
|
<span class="saver">(salvato da <a href="/profile/{{ entry.saver.royal.username }}">{{ entry.saver.royal.username }}</a>)</span>
|
|
{% endif %}
|
|
</cite>
|
|
</p>
|
|
</div>
|
|
<div class="right">
|
|
<a class="diario-id" href="#diario-{{ entry.id }}">#{{ entry.id }}</a>
|
|
</div>
|
|
</blockquote> |