129 lines
6.0 KiB
Plaintext
129 lines
6.0 KiB
Plaintext
{% extends "base" %}
|
|
{% import "macros" as macros %}
|
|
|
|
{% block title %}
|
|
{{ article.post.title }}
|
|
{% endblock title %}
|
|
|
|
{% block header %}
|
|
<a href="/~/{{ blog.fqn }}">{{ blog.title }}</a>
|
|
{% endblock header %}
|
|
|
|
{% block content %}
|
|
<h1 class="article">{{ article.post.title }}</h1>
|
|
<h2 class="article">{{ article.post.subtitle }}</h2>
|
|
<div class="article-info">
|
|
<span class="author">{{ "Written by {{ link_1 }}{{ url }}{{ link_2 }}{{ name | escape }}{{ link_3 }}" | _(
|
|
link_1='<a href="/@/',
|
|
url=author.fqn,
|
|
link_2='/">',
|
|
name=author.name,
|
|
link_3="</a>"
|
|
)
|
|
}}</span>
|
|
—
|
|
<span class="date">{{ date | date(format="%B %e, %Y") }}</span>
|
|
{% if is_author %}
|
|
—
|
|
<a href="{{ article.url}}edit">{{ "Edit" | _ }}</a>
|
|
—
|
|
<form class="inline" method="post" action="{{ article.url}}delete">
|
|
<input onclick="return confirm('Are you sure you?')" type="submit" value="{{ 'Delete this article' | _ }}">
|
|
</form>
|
|
{% endif %}
|
|
{% if not article.post.published %}
|
|
<span class="badge">{{ "Draft" }}</span>
|
|
{% endif %}
|
|
</div>
|
|
<article>
|
|
{{ article.post.content | safe }}
|
|
</article>
|
|
|
|
<div class="article-meta">
|
|
<p>{{ "This article is under the {{ license }} license." | _(license=article.post.license) }}</p>
|
|
<ul class="tags">
|
|
{% for tag in article.tags %}
|
|
{% if not tag.is_hashtag %}
|
|
<li><a href="/tag/{{ tag.tag }}">{{ tag.tag }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
<div class="flex">
|
|
{{ macros::avatar(user=author, pad=true, size="medium") }}
|
|
<div class="grow">
|
|
<h2><a href="/@/{{ author.fqn }}">{{ author.name }}</a></h2>
|
|
<p>{{ author.summary | safe }}</h2>
|
|
</div>
|
|
<a href="/@/{{ author.fqn }}/follow" class="button">
|
|
{% if is_following %}
|
|
{{ "Unfollow" | _ }}
|
|
{% else %}
|
|
{{ "Follow" | _ }}
|
|
{% endif %}
|
|
</a>
|
|
</div>
|
|
|
|
{% if account %}
|
|
<div class="actions">
|
|
<form class="likes" action="{{ article.url }}like" method="POST">
|
|
<p aria-label="{{ "{{ count }} likes" | _n(singular="One like", count=n_likes) }}" title="{{ "{{ count }} likes" | _n(singular="One like", count=n_likes) }}">{{ n_likes }}</p>
|
|
|
|
{% if has_liked %}
|
|
<button type="submit" class="action liked">{{ macros::feather(name="heart") }}{{ "I don't like this anymore" | _ }}</button>
|
|
{% else %}
|
|
<button type="submit" class="action">{{ macros::feather(name="heart") }}{{ "Add yours" | _ }}</button>
|
|
{% endif %}
|
|
</form>
|
|
<form class="reshares" action="{{ article.url }}reshare" method="POST">
|
|
<p aria-label="{{ "{{ count }} Boosts" | _n(singular="One Boost", count=n_reshares) }}" title="{{ "{{ count }} Boosts" | _n(singular="One Boost", count=n_reshares) }}">{{ n_reshares }}</p>
|
|
|
|
{% if has_reshared %}
|
|
<button type="submit" class="action reshared"><i class="icon icon-repeat"></i>{{ "I don't want to boost this anymore" | _ }}</button>
|
|
{% else %}
|
|
<button type="submit" class="action"><i class="icon icon-repeat"></i>{{ "Boost" | _ }}</button>
|
|
{% endif %}
|
|
</form>
|
|
</div>
|
|
{% else %}
|
|
<p class="center">{{ "Login or use your Fediverse account to interact with this article" | _ }}</p>
|
|
<div class="actions">
|
|
<div class="likes">
|
|
<p aria-label="{{ "{{ count }} likes" | _n(singular="One like", count=n_likes) }}" title="{{ "{{ count }} likes" | _n(singular="One like", count=n_likes) }}">{{ n_likes }}</p>
|
|
<a href="/login?m=Login%20to%20like" class="action">{{ macros::feather(name="heart") }}{{ "Add yours" | _ }}</a>
|
|
</div>
|
|
|
|
<div class="reshares">
|
|
<p aria-label="{{ "{{ count }} Boosts" | _n(singular="One Boost", count=n_reshares) }}" title="{{ "{{ count }} Boosts" | _n(singular="One Boost", count=n_reshares) }}">{{ n_reshares }}</p>
|
|
<a href="/login?m=Login%20to%20boost" class="action"><i class="icon icon-repeat"></i>{{ "Boost" | _ }}</a>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="comments">
|
|
<h2>{{ "Comments" | _ }}</h2>
|
|
|
|
{% if account %}
|
|
<form method="post" action="{{ article.url }}comment">
|
|
<label for="plume-editor">{{ "Your comment" | _ }}</label>
|
|
{% if previous %}
|
|
<input type="hidden" name="responding_to" value="{{ previous.id }}"/>
|
|
{% endif %}
|
|
{# Ugly, but we don't have the choice if we don't want weird paddings #}
|
|
<textarea id="plume-editor" name="content">{% filter trim %}{% if previous %}{% if previous.author.fqn != user_fqn %}@{{ previous.author.fqn }} {% endif %}{% for mention in previous.mentions %}{% if mention != user_fqn %}@{{ mention }} {% endif %}{% endfor %}{% endif %}{% endfilter %}</textarea>
|
|
<input type="submit" value="{{ "Submit comment" | _ }}" />
|
|
</form>
|
|
{% endif %}
|
|
|
|
{% if comments | length > 0 %}
|
|
<div class="list">
|
|
{% for comment in comments %}
|
|
{{ macros::comment(comm=comment) }}
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<p class="center">{{ "No comments yet. Be the first to react!" | _ }}</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|