diff options
author | William Carroll <wpcarro@gmail.com> | 2021-12-30T19·34-0400 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-01-08T05·33+0000 |
commit | ca6be786a18aedcb3d5a649a2b00973c3e38bc65 (patch) | |
tree | e0bec1ecb076f8dc279a4cdd223d5f7a2a758398 /users/wpcarro/website/fragments | |
parent | 44f20ea8108c82eef254c5e031f59bbc21cf2992 (diff) |
chore(wpcarro/website): Templatize website r/3538
Preferring billandhiscomputer.com in lieu of wpcarro.dev. wpcarro is a bit of a tough username for others to remember and for me to say out-loud (it usually involves me spelling it and explaining to others why Carroll is missing 2x-Ls). I think it's time for a change. During the transition, I don't want to deal with stale links to https://wpcarro.dev, so I'm templatizing more of my website and blog so that these values can be replaced. Expect more forthcoming changes. Change-Id: Ic2f5519e6b0d76fcb8b737bf50009e8388f1b178 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4754 Tested-by: BuildkiteCI Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com>
Diffstat (limited to 'users/wpcarro/website/fragments')
-rw-r--r-- | users/wpcarro/website/fragments/homepage.html | 6 | ||||
-rw-r--r-- | users/wpcarro/website/fragments/template.html | 24 |
2 files changed, 15 insertions, 15 deletions
diff --git a/users/wpcarro/website/fragments/homepage.html b/users/wpcarro/website/fragments/homepage.html index 54e38b990ef1..f515d974001e 100644 --- a/users/wpcarro/website/fragments/homepage.html +++ b/users/wpcarro/website/fragments/homepage.html @@ -1,6 +1,6 @@ <section class="leading-7"> <p class="relative text-3xl text-center font-bold pt-6 md:pt-14 pb-10"> - Hey! I'm William.<span class="pl-10 relative"><span class="block absolute right-0 top-0 transition-transform hover:rotate-90">👋</span></span> + Hey! I'm Bill.<span class="pl-10 relative"><span class="block absolute right-0 top-0 transition-transform hover:rotate-90">👋</span></span> </p> <p class="pb-4"> I write software. Currently I work as a <b>Site Reliability Engineer</b> for @@ -8,10 +8,10 @@ </p> <p class="pb-4"> I'm <b>wpcarro</b> on - <a class="font-bold text-blue-600 hover:underline" href="https://github.com/wpcarro">GitHub</a> + <a class="font-bold text-blue-600 hover:underline" href="@github@">GitHub</a> (and elsewhere), but if you're looking for code samples, the majority of my open-source work resides in a magical place called the - <a class="font-bold text-blue-600 hover:underline" href="https://cs.tvl.fyi/depot/-/tree/users/wpcarro">depot</a>. + <a class="font-bold text-blue-600 hover:underline" href="@depotWork@">depot</a>. </p> <p class="pb-4"> If I'm not coding, I'm likely meditating, training Jiu Jitsu, or diff --git a/users/wpcarro/website/fragments/template.html b/users/wpcarro/website/fragments/template.html index 96d19e849196..381dcad68040 100644 --- a/users/wpcarro/website/fragments/template.html +++ b/users/wpcarro/website/fragments/template.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html lang="en"> <head> - <title>wpcarro.dev</title> + <title>@domain@</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=JetBrains+Mono"> @@ -22,31 +22,31 @@ <header class="sticky z-10 transition duration-300 bg-gray-100 top-0 py-6"> <div class="flex max-w-sm md:max-w-3xl mx-auto"> <div class="flex-1 text-center md:text-left text-xl md:text-base"> - <a href="https://cs.tvl.fyi/depot/-/blob/users/wpcarro/website/index.html"> + <a href="@depotWork@/website"> <h1 class="font-bold"> - <span class="text-black">(</span><a class="text-purple-600 hover:underline" href="https://cs.tvl.fyi/depot/-/blob/users/wpcarro/website/index.html">def</a> <a class="text-green-600 hover:underline text-bold" href="https://wpcarro.dev">"wpcarro.dev"</a><span class="text-black">)</span> + <span class="text-black">(</span><a class="text-purple-600 hover:underline" href="@depotWork@/website">def</a> <a class="text-green-600 hover:underline text-bold" href="@homepage@">"@domain@"</a><span class="text-black">)</span> </h1> </a> </div> <nav class="flex-1 hidden md:block"> <ul class="list-reset flex justify-end space-x-8"> <li> - <a class="hover:underline" href="https://wpcarro.dev/habits"> + <a class="hover:underline" href="@habits@"> Habits </a> </li> <li> - <a class="hover:underline" href="https://wpcarro.dev/blog"> + <a class="hover:underline" href="@blog@"> Blog </a> </li> <li> - <a class="hover:underline" href="https://github.com/wpcarro"> + <a class="hover:underline" href="@github@"> GitHub </a> </li> <li> - <a class="hover:underline" href="https://linkedin.com/in/williampatrickcarroll"> + <a class="hover:underline" href="@linkedin@"> LinkedIn </a> </li> @@ -57,25 +57,25 @@ <div class="max-w-sm px-2 md:px-0 md:max-w-prose mx-auto"> @contentHtml@ <footer class="md:hidden pb-6"> - <h2 class="text-xl font-bold py-4">More wpcarro?</h2> + <h2 class="text-xl font-bold py-4">More Bill?</h2> <ul> <li class="pb-6"> - <a class="text-blue-600 font-bold" href="https://wpcarro.dev"> + <a class="text-blue-600 font-bold" href="@homepage@"> Home <span class="text-blue-300">-></span> </a> </li> <li class="pb-6"> - <a class="text-blue-600 font-bold" href="https://wpcarro.dev/blog"> + <a class="text-blue-600 font-bold" href="@blog@"> Blog <span class="text-blue-300">-></span> </a> </li> <li class="pb-6"> - <a class="text-blue-600 font-bold" href="https://github.com/wpcarro"> + <a class="text-blue-600 font-bold" href="@github@"> GitHub <span class="text-blue-300">-></span> </a> </li> <li class="pb-6"> - <a class="text-blue-600 font-bold" href="https://linkedin.com/in/williampatrickcarroll"> + <a class="text-blue-600 font-bold" href="@linkedin@"> LinkedIn <span class="text-blue-300">-></span> </a> </li> |