14 lines
No EOL
537 B
Text
14 lines
No EOL
537 B
Text
{% if mentions['link-to'].size > 0 %}
|
|
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-white">Links</h2>
|
|
<div class="mt-2.5 flex flex-col not-prose">
|
|
<ul class="list-inside list-disc pl-5 md:pl-10">
|
|
{% for mention in mentions['link-to'] %}
|
|
<li class="mt-1.5 mb-2">
|
|
<a href="{{ mention.url }}" class="text-blue-600 hover:text-blue-600 dark:text-blue-400 dark:hover:text-blue-200">
|
|
{{ mention.name }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %} |