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 %}