fix(wpcarro/blog): Fix broken hrefs to blog posts
Remove remaining references to blog.wpcarro.dev Change-Id: I364763459b195fc17753da4a7c5918ce5136e891 Reviewed-on: https://cl.tvl.fyi/c/depot/+/4718 Reviewed-by: wpcarro <wpcarro@gmail.com> Autosubmit: wpcarro <wpcarro@gmail.com> Tested-by: BuildkiteCI
This commit is contained in:
parent
1d4f88cbde
commit
1f8e606c12
3 changed files with 2 additions and 124 deletions
|
@ -1,11 +1,3 @@
|
|||
# wpcarro.dev
|
||||
|
||||
https://wpcarro.dev is my personal website. I expose a few subdomains, one of
|
||||
which you are probably visiting right now, git.wpcarro.dev. Here are some of
|
||||
the others:
|
||||
|
||||
- `blog.wpcarro.dev`: My personal blog
|
||||
- `learn.wpcarro.dev`: Teaching others to code
|
||||
- `sandbox.wpcarro.dev`: Where I deploy some pet projects and code sketches
|
||||
|
||||
Visit https://wpcarro.dev for a sitemap.
|
||||
https://wpcarro.dev is my personal website. Check it out!
|
||||
|
|
|
@ -10,8 +10,7 @@ let
|
|||
|
||||
config = {
|
||||
name = "wpcarro's blog";
|
||||
baseUrl = "https://blog.wpcarro.dev";
|
||||
footer = "";
|
||||
baseUrl = "https://wpcarro.dev/blog";
|
||||
};
|
||||
|
||||
posts = filter includePost (list post (import ./posts.nix));
|
||||
|
|
|
@ -1,113 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>wpcarro.dev</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">
|
||||
<script src="https://cdn.tailwindcss.com"></script>
|
||||
<script>
|
||||
tailwind.config = {
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
mono: ["JetBrains Mono", "normal"]
|
||||
},
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
<body class="font-mono bg-gray-100">
|
||||
<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">
|
||||
<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>
|
||||
</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">
|
||||
Habits
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:underline" href="https://blog.wpcarro.dev">
|
||||
Blog
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:underline" href="https://github.com/wpcarro">
|
||||
GitHub
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a class="hover:underline" href="https://linkedin.com/in/williampatrickcarroll">
|
||||
LinkedIn
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="max-w-sm px-2 md:px-0 md:max-w-prose mx-auto">
|
||||
<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>
|
||||
</p>
|
||||
<p class="pb-4">
|
||||
I write software. Currently I work as a <b>Site Reliability Engineer</b> for
|
||||
<a class="text-blue-600 font-bold hover:underline" href="https://drive.google.com">Google Drive</a>.
|
||||
</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>
|
||||
(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>.
|
||||
</p>
|
||||
<p class="pb-4">
|
||||
If I'm not coding, I'm likely meditating, training Jiu Jitsu, or
|
||||
fumbling around on the piano or drums.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<footer class="md:hidden pb-6">
|
||||
<h2 class="text-2xl font-bold pt-4 pb-6">Other Links</h2>
|
||||
<ul>
|
||||
<li class="pb-6">
|
||||
<a class="text-blue-600 font-bold" href="https://blog.wpcarro.dev">
|
||||
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">
|
||||
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">
|
||||
LinkedIn <span class="text-blue-300">-></span>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const $header = document.querySelector("header");
|
||||
const dropShadow = "drop-shadow-md";
|
||||
const update = () => window.scrollY !== 0 ?
|
||||
$header.classList.add(dropShadow) :
|
||||
$header.classList.remove(dropShadow);
|
||||
|
||||
update();
|
||||
document.addEventListener("scroll", update);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue