oliverdavies.uk/website/source/_pages/links.html.twig

50 lines
1.2 KiB
Twig
Raw Normal View History

2022-04-03 21:17:29 +00:00
---
title: Links
links:
2022-08-24 22:40:58 +00:00
-
title: My daily email list
url: '/daily'
2022-04-03 21:17:29 +00:00
-
title: Twitter
url: '%site.twitter.url%'
-
title: YouTube
url: '%site.youtube.channel.url%'
-
title: LinkedIn
url: '%site.linkedin.url%'
-
title: Drupal.org
url: '%site.drupalorg.url%'
-
title: GitHub
url: '%site.github.url%'
-
title: GitHub Gists
url: '%site.github.gist.url%'
-
title: Packagist
url: '%site.packagist.url%'
-
title: Speakerdeck
url: '%site.speakerdeck.url%'
-
title: PHP South Wales
url: https://www.phpsouthwales.uk
---
2022-08-24 22:40:58 +00:00
<div class="mx-auto max-w-md">
<ul class="p-0 space-y-4 list-none">
2022-04-03 21:17:29 +00:00
{% for link in page.links %}
<li>
<a
2022-08-24 22:40:58 +00:00
class="block p-2 w-full text-center text-black no-underline border transition duration-200 ease-in-out dark:text-white hover:text-white focus:text-white dark:hover:text-black dark:focus:text-black dark:hover:bg-white dark:focus:bg-white hover:bg-blue-primary focus:bg-blue-primary"
2022-04-03 21:17:29 +00:00
href="{{ link.url }}?utm_source=oliverdavies.uk&utm_medium=links"
>
{{ link.title }}
</a>
</li>
{% endfor %}
</ul>
</div>