DEVELOPMENT ENVIRONMENT

~liljamo/liljamo-dev-zola

da0a644e326fd4c6dff103a6b1b54961bdf857f0 — Jonni Liljamo 9 months ago 6ba776a
fix: project links blank
1 files changed, 3 insertions(+), 3 deletions(-)

M templates/project.html
M templates/project.html => templates/project.html +3 -3
@@ 8,15 8,15 @@
    <div class="flex flex-col gap-1 items-center">
        <p class="font-bold text-xl lg:text-2xl">{{ section.title }}</p>
        {% if section.extra.external_link %}
        <p class="lg:text-lg">See it in action: <a class="hover:underline italic font-semibold" href={{ section.extra.external_link }}>
        <p class="lg:text-lg">See it in action: <a class="hover:underline italic font-semibold" rel="noopener" target="_blank" href={{ section.extra.external_link }}>
            {{ section.extra.external_link_visual }}
        </a></p>
        {% endif %}
        {% if section.extra.git %}
        <a class="lg:text-lg text-orange-400 font-semibold hover:underline" href={{ section.extra.git }}>Git 🦊</a>
        <a class="lg:text-lg text-orange-400 font-semibold hover:underline" rel="noopener" target="_blank" href={{ section.extra.git }}>Git 🦊</a>
        {% endif %}
        {% if section.extra.docs %}
        <a class="text-sm lg:text-base text-emerald-400 font-semibold hover:underline" href={{ section.extra.docs }}>RTFM</a>
        <a class="text-sm lg:text-base text-emerald-400 font-semibold hover:underline" rel="noopener" target="_blank" href={{ section.extra.docs }}>RTFM</a>
        {% endif %}
    </div>
    {% if section.pages %}