Update /me

This commit is contained in:
N-Upchurch 2023-07-18 19:32:27 -05:00
parent 2b626ce1b7
commit f51ae9eab7
4 changed files with 9 additions and 4 deletions

View File

@ -7,7 +7,6 @@ Integrate recipe structured data for recipe type articles
Performance / Accessibility: Performance / Accessibility:
--------------------------------------- ---------------------------------------
Change contrast color
Lazy load images Lazy load images
Remove unecessary fonts Remove unecessary fonts
change font-display to "swap" change font-display to "swap"

View File

@ -31,6 +31,12 @@ module.exports = {
linkDisplay: "Lemmy", linkDisplay: "Lemmy",
iconURL: "/img/Lemmy_logo.svg" iconURL: "/img/Lemmy_logo.svg"
}, },
{
title: "My Blog",
linkURL: "https://nathanupchurch.com",
linkDisplay: "My Blog",
iconURL: "/img/logo_favicon_dark.svg"
},
{ {
title: "Matrix", title: "Matrix",
linkURL: "https://matrix.to/#/@nathanu:matrix.org", linkURL: "https://matrix.to/#/@nathanu:matrix.org",

View File

@ -4,7 +4,7 @@ layout: layouts/baseBareBones.njk
{%- css %}{% include "public/css/links.css" %}{% endcss %} {%- css %}{% include "public/css/links.css" %}{% endcss %}
<img class="profilePic" src="{{ metadata.author.profilePic }}"> <img class="profilePic" src="{{ metadata.author.profilePic }}">
<h1 class="socialTitle">Nathan Upchurch</h1> <h1 class="socialTitle">Nathan Upchurch</h1>
<p class="page-block nodropcap">Here's where else you can find me on the internet.</p> <p class="page-block nodropcap">Here's where you can find me on the internet:</p>
<ul class="socialLinks"> <ul class="socialLinks">
{% for link in metadata.socialLinks %} {% for link in metadata.socialLinks %}

View File

@ -6,11 +6,11 @@ html.barebones, body.barebones {
h1.socialTitle { h1.socialTitle {
padding-top: 0; padding-top: 0;
margin-top: 0; margin-top: 0;
margin-bottom: .25em; font-size: 2.5em;
} }
img.profilePic { img.profilePic {
max-width: 15em; max-width: 10em;
border-radius: 50%; border-radius: 50%;
border: solid 5px var(--text-color); border: solid 5px var(--text-color);
} }