Plume/templates/posts/details.html.tera

73 lines
2.4 KiB
Plaintext
Raw Normal View History

2018-05-09 21:09:52 +02:00
{% extends "base" %}
{% block title %}
{{ post.title }}
{% endblock title %}
2018-05-10 22:31:52 +02:00
{% block header %}
<a href="../">{{ blog.title }}</a>
{% endblock header %}
{% block content %}
{% if author.display_name %}
{% set name = author.display_name %}
{% else %}
{% set name = author.username %}
{% endif %}
2018-05-19 09:53:51 +02:00
<p>
<b>{{ "Written by {{ link_start }}{{ name }}{{ link_end }}" | _(link_start='<a href="/@/{{ author.fqn }}/">', name=name, link_end="</a>")}}</b>
2018-05-19 09:53:51 +02:00
&mdash;
<span>{{ date | date(format="%B %e, %Y") }}</span>
</p>
2018-05-10 11:44:57 +02:00
<h1>{{ post.title }}</h1>
2018-05-10 22:31:52 +02:00
<article>
2018-05-10 11:44:57 +02:00
{{ post.content | safe }}
2018-05-10 22:31:52 +02:00
</article>
2018-05-10 18:38:03 +02:00
2018-05-10 22:31:52 +02:00
<div class="article-meta">
2018-06-17 17:26:15 +02:00
<p>{{ "This article is under the {{ license }} license." | _(license=post.license) }}</p>
2018-05-10 18:38:03 +02:00
2018-05-10 22:31:52 +02:00
<div class="inline">
<p>
2018-06-17 17:26:15 +02:00
{{ "{{ count }} likes" | _n(singular="One like", count=n_likes) }}
2018-05-10 22:31:52 +02:00
</p>
2018-05-12 22:56:57 +02:00
<a class="button" href="like">
{% if has_liked %}
2018-06-17 17:26:15 +02:00
{{ "I don't like this anymore" | _ }}
2018-05-12 22:56:57 +02:00
{% else %}
2018-06-17 17:26:15 +02:00
{{ "Add yours" | _ }}
2018-05-12 22:56:57 +02:00
{% endif %}
</a>
2018-05-19 11:57:39 +02:00
<p>
2018-06-17 17:26:15 +02:00
{{ "{{ count }} reshares" | _n(singular="One reshare", count=n_reshares) }}
2018-05-19 11:57:39 +02:00
</p>
<a class="button" href="reshare">
{% if has_reshared %}
2018-06-17 17:26:15 +02:00
{{ "I don't want to reshare this anymore" | _ }}
2018-05-19 11:57:39 +02:00
{% else %}
2018-06-17 17:26:15 +02:00
{{ "Reshare" | _ }}
2018-05-19 11:57:39 +02:00
{% endif %}
</a>
2018-05-10 11:44:57 +02:00
</div>
2018-05-10 22:31:52 +02:00
2018-06-17 17:26:15 +02:00
<h2>{{ "Comments" | _ }}</h2>
<div class="list">
{% for comment in comments %}
{% if comment.author.display_name %}
{% set comment_author_name = comment.author.display_name %}
{% else %}
{% set comment_author_name = comment.author.username %}
{% endif %}
<div class="card" id="comment-{{ comment.id }}">
<a href="/@/{{ comment.author.fqn }}/"><b>{{ comment_author_name }}</b></a>
<div>{{ comment.content | safe }}</div>
2018-06-17 17:26:15 +02:00
<a href="comment?responding_to={{ comment.id }}">{{ "Respond" | _ }}</a>
</div>
{% endfor %}
</div>
2018-06-17 17:26:15 +02:00
<a class="button inline-block" href="comment?">{{ "Comment" | _ }}</a>
2018-05-10 22:31:52 +02:00
</div>
2018-05-09 21:09:52 +02:00
{% endblock content %}