Skip to content

Commit

Permalink
Added links page, changed footer
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewdr committed Oct 26, 2024
1 parent 0add8d9 commit 012abf4
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 6 deletions.
4 changes: 1 addition & 3 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
---
const platform = "GitHub";
const username = "jakewdr";
---

<footer>
<p><i>Learn more about my projects on <a href={`https://www.${platform}.com/${username}`}>{platform}</a></i></p>
<p><i>Written by me in <a href="https://astro.build/">Astro</a></i></p>
</footer>

<style>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
<div class="nav-links">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/blog">Blog</a>
<a href="/links">Links</a>
</div>
2 changes: 1 addition & 1 deletion src/pages/about.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import Snow from "../components/Snow.astro";
<li><a href="https://github.com/earthmoverproject">earthmover</a> - Various anti-image harvesting tools</li>
</ul>
<h2>Music</h2>
<p>I listen to lots of post rock, alternative rap and various other subgenres</p>
<p>I listen to lots of albums in a variety of subgenres</p>
<p>If you want to check up on my full libary go no further then my <a href="https://www.last.fm/user/jwke">LastFM</a></p>
<Footer />
<Snow/>
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import Snow from "../components/Snow.astro";
<body>
<Navigation />
<h1>{pageTitle}</h1>
<i>Welcome to my personal website!</i>
<p><i><q>An idiot admires complexity, a genius admires simplicity</q></i> - Terry Davis</p>
<Footer />
<Snow/>
Expand Down
31 changes: 31 additions & 0 deletions src/pages/links.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
const pageTitle = "Links";
import "../styles/global.css";
import Footer from "../components/Footer.astro";
import Navigation from "../components/Navigation.astro";
import Snow from "../components/Snow.astro";
---

<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/x-icon" href="/elephant.jpg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{pageTitle}</title>
</head>
<body>
<Navigation />
<h1>{pageTitle}</h1>
<ul>
<li><b><a href="https://www.instagram.com/jakewdr/">Instagram</a></b></li>
<li><b><a href="https://open.spotify.com/user/31nfpks2pgzjofrhwbdk7xx3ovli">Spotify</a></b></li>
<li><b><a href="https://www.last.fm/user/jwke">LastFM</a></b></li>
<li><b><a href="https://myanimelist.net/profile/jwke">MyAnimeList</a></b></li>
<li><b><a href="https://letterboxd.com/jakewdr/">Letterboxd</a></b></li>
<li><b><a href="https://github.com/jakewdr">GitHub</a></b></li>
</ul>
<Footer />
<Snow/>
</body>
</html>

0 comments on commit 012abf4

Please sign in to comment.