michalvankodev-site/templates/contact.html

28 lines
834 B
HTML
Raw Permalink Normal View History

2024-04-25 23:05:47 +02:00
{% extends "base.html" %}
{% block content %}
2024-09-20 12:35:30 +02:00
<section id="contact-page">
<h1 class="mx-6 mt-3 text-4xl text-blue-950 font-extrabold lg:mx-auto max-w-read">
Contact
</h1>
2024-04-25 23:05:47 +02:00
2024-09-20 12:35:30 +02:00
<ul class="mx-6">
{% for link in links %}
<li class="my-2 sm:my-4 lg:my-6 max-w-[32rem] mx-auto">
<a
class="flex border-2 place-content-center items-center rounded-full text-blue-900 border-blue-500 py-2 sm:py-4 hover:bg-pink-200 fill-blue-900 hover:fill-blue-400 transition-colors no-underline"
href="{{link.href}}"
title="{{link.title}}"
>
<svg aria-hidden="true" class="h-6 w-6 mx-2 self-start">
2024-10-23 16:01:48 +02:00
<use xlink:href="#{{link.svg}}" />
2024-09-20 12:35:30 +02:00
</svg>
<span class="text-lg font-semibold">{{link.label}}</span>
</a>
</li>
{% endfor %}
</ul>
</section>
2024-04-25 23:05:47 +02:00
{% endblock %}