fix url placemnt

This commit is contained in:
Barrett Ruth 2025-11-28 17:41:20 -05:00
parent 9e4794d279
commit c5dbbbf6b8
11 changed files with 5 additions and 19 deletions

View file

@ -4,6 +4,4 @@ slug: "auto-theme.nvim"
date: "11/28/2025"
---
[source code](github.com/barrett-ruth/auto-theme.nvim)
wip

View file

@ -4,4 +4,4 @@ date: "07/10/2025"
slug: "barrettruth.com"
---
[source code](github.com/barrett-ruth/barrettruth.com) for this website
code for this website

View file

@ -3,8 +3,6 @@ title: "bmath"
date: "09/10/2025"
---
[source code](github.com/barrett-ruth/bmath)
header-only c++23 math library
built to learn and apply modern c++ in a competitive programming environment

View file

@ -3,8 +3,6 @@ title: "competitive-programming"
date: "09/10/2025"
---
[source code](github.com/barrett-ruth/competitive-programming)
a collection of my competitive programming solutions categorized as follows:
- `/kattis`: a few ICPC problems from UVA's "practices"

View file

@ -4,8 +4,6 @@ slug: "cp.nvim"
date: "10/10/2025"
---
[source code](github.com/barrett-ruth/cp.nvim)
Things have changed since I last documented my competitive programming setup [here](/software/my-cp-setup.html).
# my goals

View file

@ -3,6 +3,4 @@ title: "dots"
date: "07/10/2025"
---
[source code](github.com/barrett-ruth/dots)
collection of configurations for neovim, zsh, ghostty, xorg, tmux, as well as os-specific configurations and custom scripts

View file

@ -4,8 +4,6 @@ slug: "midnight.nvim"
date: "8/11/2025"
---
[source code](github.com/barrett-ruth/midnight.nvim)
neovim theme for code, not colors.
# motivation

View file

@ -3,6 +3,4 @@ title: "sl"
date: "09/10/2025"
---
[source code](github.com/barrett-ruth/sl)
[archive](/meditations/suck-less-or-suck-more.html) of [suckless](https://suckless.org/) repositories

View file

@ -3,6 +3,4 @@ title: "wp"
date: "07/10/2025"
---
[source code](github.com/barrett-ruth/wp)
some of my wallpapers

View file

@ -3,8 +3,6 @@ title: "my cp setup"
date: "15/04/2025"
---
Source code [here](https://github.com/barrett-ruth/dots/blob/main/nvim/lua/cp.lua).
# my goals
I wanted the following features in my competitive programming (cp) setup:

View file

@ -13,6 +13,7 @@ export async function getStaticPaths() {
const { repo } = Astro.props;
const { Content } = await repo.render();
const cloneCommand = `git clone https://git.barrettruth.com/${repo.slug}.git`;
const githubUrl = `https://github.com/barrett-ruth/${repo.slug}`;
---
<PostLayout frontmatter={repo.data} post={repo}>
@ -24,5 +25,8 @@ const cloneCommand = `git clone https://git.barrettruth.com/${repo.slug}.git`;
<code><span class="prompt">&gt;&nbsp;</span>{cloneCommand}</code>
</div>
<br />
<div><a href={githubUrl}>source code</a></div>
<Content />
</PostLayout>