pyfedi/app/templates/_inoculation_links.html

20 lines
837 B
HTML
Raw Normal View History

2024-01-18 18:08:39 -08:00
{% if inoculation %}
<div class="card mt-3">
<div class="card-header">
<h2 title="These links aim to encourage mindful and informed discussions rooted in awareness, critical thinking, and the well-being of the community.">{{ _('Rational Discourse Toolkit') }}</h2>
</div>
<div class="card-body">
<h4>{{ inoculation['title'] }}</h4>
{% if inoculation['description'] %}<p>{{ inoculation['description'] }}</p>{% endif %}
{% if inoculation['links'] %}
<ul class="list-group list-group-flush">
{% for link in inoculation['links'] %}
<li class="list-group-item">
2024-01-18 20:29:50 -08:00
<a href="{{ link['href'] }}" target="_blank">{{ link['title'] }}</a>
2024-01-18 18:08:39 -08:00
</li>
{% endfor %}
</ul>
{% endif %}
</div>
</div>
{% endif %}