add more markup

pyrox.dev a848e5ae d21ef7ea

verified
Changed files
+40 -11
src
+1 -1
src/_components/footer.vto
··· 14 14 rel="me" 15 15 aria-label="{{author.name}}'s {{link.description}}" 16 16 > 17 - <i class="si si-{{link.service}} {{link.extra_classes}}"></i> 17 + <i class="u-url si si-{{link.service}} {{link.extra_classes}}"></i> 18 18 </a> 19 19 </li> 20 20 {{ /for }}
+6 -1
src/_components/navbar.vto
··· 7 7 class="flex flex-row text-xl lg:text-3xl text-mauve underline gap-x-4 lg:gap-x-16 justify-center" 8 8 > 9 9 {{ for link of nav.links }} 10 - <a class="underline self-center" href="{{ link.link }}">{{ link.name }}</a> 10 + <a 11 + class="underline self-center" 12 + href="{{ link.link }}" 13 + {{ if link.name == "About" }} 14 + rel="author"{{ /if }} 15 + >{{ link.name }}</a> 11 16 {{ /for }} 12 17 </nav> 13 18 <div></div>
+6 -2
src/_components/webring.vto
··· 1 - <li class="px-2 py-1 bg-surface0 text-center text-lg rounded-md w-full lg:w-1/3"> 1 + <li 2 + class="mb-2 lg:mb-4 px-2 py-1 bg-surface0 text-center text-lg rounded-md w-full sm:w-1/2 xl:w-1/3" 3 + > 2 4 <p><a href="{{ring.all}}" class="text-serif text-2xl text-mauve">{{ ring.name }}</a></p> 3 5 <a href="{{ring.previous}}" class="text-green">&lt; Previous</a> | 4 - <a href="{{ring.random}}" class="text-peach">Random</a> | 6 + {{ if ring.random }} 7 + <a href="{{ring.random}}" class="text-peach">Random</a> | 8 + {{ /if }} 5 9 <a href="{{ring.all}}" class="text-sapphire">All</a> | 6 10 <a href="{{ring.next}}" class="text-maroon">Next &gt;</a> 7 11 </li>
+19 -1
src/_data/webrings.toml
··· 1 1 [[rings]] 2 2 name = "Lady Arcaders Webring" 3 3 previous = "https://ladyarcaders.com/webring/6/previous/" 4 - next = "https://ladyarcaders.com/webring/6/next/" 5 4 random = "https://ladyarcaders.com/webring/6/random" 6 5 all = "https://ladyarcaders.com/webring/" 6 + next = "https://ladyarcaders.com/webring/6/next/" 7 + 8 + [[rings]] 9 + name = "roboring" 10 + previous = "https://stellophiliac.github.io/roboring/dish/previous" 11 + all = "https://stellophiliac.github.io/roboring" 12 + next = "https://stellophiliac.github.io/roboring/dish/next" 13 + 14 + [[rings]] 15 + name = "Catppuccin Webring" 16 + previous = "https://ctp-webr.ing/dish/previous" 17 + all = "https://ctp-webr.ing/" 18 + next = "https://ctp-webr.ing/dish/next" 19 + 20 + [[rings]] 21 + name = "IndieWeb Webring" 22 + previous = "https://xn--sr8hvo.ws/previous" 23 + all = "https://xn--sr8hvo.ws" 24 + next = "https://xn--sr8hvo.ws/next"
+1 -1
src/_includes/layouts/blog-post.vto
··· 10 10 </h2> 11 11 <h2 class="text-2xl font-sans mb-8 text-overlay1"> 12 12 By 13 - <span class="inline p-author">{{ author.name }}</span> 13 + <span class="inline p-author h-card">{{ author.name }}</span> 14 14 </h2> 15 15 16 16 <div class="e-content text-lg">
+6 -4
src/_includes/layouts/home.vto
··· 1 1 {{ layout "layouts/base.vto" }} 2 - <main class="min-h-screen text-text justify-self-center w-full lg:w-1/2"> 3 - <h1 class="mt-8 text-5xl text-bold text-mauve">hi, I'm dish</h1> 2 + <main class="min-h-screen text-text justify-self-center w-full lg:w-1/2 h-card"> 3 + <h1 class="mt-8 text-5xl text-bold text-mauve"> 4 + hi, I'm <span><a href="/about" rel="me" class="u-url u-uid p-name p-nickname" 5 + >dish</a></span> 6 + </h1> 4 7 {{# Profile picture goes here #}} 5 8 <div class="h-64 w-64 content-center text-center outline-2 mt-4"> 6 9 there'll be a picture here in the future, promise! 7 10 </div> 8 - <h2 class="text-2xl mt-4">Student, Sysadmin, and UX Crafter</h2> 11 + <h2 class="text-2xl mt-4 p-note">Student, Sysadmin, and UX Crafter</h2> 9 12 <p class="text-lg mt-2"> 10 13 Howdy! I play with computers, with an emphasis on accessible, secure, and enjoyable 11 14 experiences. 12 15 </p> 13 - <!-- <div class="h-4"></div> --> 14 16 <h2 class="my-8 text-2xl">Recent blog posts:</h2> 15 17 <ul class="lg:w-3/4"> 16 18 {{ for post of search.pages("category=blog", "date", 5) }}
+1 -1
src/about.md
··· 8 8 Hello, I'm dish. 9 9 10 10 My main focuses are cybersecurity, system administration, and user experience. I enjoy building 11 - things from scratch, tinkering, and try to deeply understand the tools I work with. 11 + things from scratch, tinkering, and try to deeply understand the tools I work with. {.p-note} 12 12 13 13 Currently, I'm a student at a university in the United States, working towards a Bachelor's Degree 14 14 in Cybersecurity.