Implement h-card markup

This commit is contained in:
2026-01-03 15:04:52 -06:00
parent 6896c7fc8e
commit 2a49b92643
2 changed files with 11 additions and 11 deletions

View File

@@ -1,13 +1,13 @@
---
layout: layouts/linksPage.njk
---
<div class="links-container">
<img class="profilePic" src="{{ metadata.author.profilePic }}">
<h1 class="socialTitle">Nathan Upchurch</h1>
<div class="links-container h-card">
<img class="profilePic u-photo" src="{{ metadata.author.profilePic }}">
<h1 class="socialTitle p-name">Nathan Upchurch</h1>
<p class="page-block nodropcap">Here's where you can find me on the internet:</p>
<div class="socialLinks">
{% for link in metadata.socialLinks %}
<a class="link-button" {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}">
<a class="link-button u-url" {% if link.customAttribute %} {{ link.customAttribute | safe }} {% endif %} href="{{ link.linkURL }}">
<button type="button"><img src="{{ link.iconURL }}" />{{ link.linkDisplay }}</button>
</a>
{% endfor %}