forked from mirrors/bookwyrm
7a153a9942
this is janky... oh well
21 lines
576 B
HTML
21 lines
576 B
HTML
<article class="card">
|
|
<header class="card-header">
|
|
{% block card-header %}
|
|
{% endblock %}
|
|
</header>
|
|
|
|
{% if not status or status.status_type != 'GeneratedNote' or status.book or status.mention_books.exists or status.mention_users.exists %}
|
|
<section class="card-content">
|
|
{% block card-content %}
|
|
{% endblock %}
|
|
</section>
|
|
{% endif %}
|
|
|
|
<footer class="card-footer has-background-white-bis">
|
|
{% block card-footer %}
|
|
{% endblock %}
|
|
</footer>
|
|
|
|
{% block card-bonus %}
|
|
{% endblock %}
|
|
</article>
|