Skip to content

Commit

Permalink
shit
Browse files Browse the repository at this point in the history
  • Loading branch information
lxjv committed Aug 28, 2024
1 parent 490d760 commit 9819c15
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/components/layout/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import FlavourText from "./partials/FlavourText.astro";
---

<footer style="margin-top: 2em;">
Why not look at some <a href="/meta/others">webrings</a>?
<div id="2">
<a href="/meta/others">Webrings</a>
<Social platform="github.com" username="lxjv" displayText="GitHub" />
<Social platform="laker.lol" username="" displayText="laker.lol" />
<Social
Expand Down
12 changes: 5 additions & 7 deletions src/components/layout/partials/Navigation.astro
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
<nav>
<a href="/projects"><i class="fa-solid fa-paperclip"></i> Projects</a>
<a href="/blog">Blog</a>
<a href="/notes">laNotes</a>
<a href="/now">Now</a>
<a href="/contact">Contact</a>
<a href="/blog"><i class="fa-solid fa-signature"></i>Blog</a>
<a href="/notes"><i class="fa-solid fa-pencil"></i>laNotes</a>
<a href="/now"><i class="fa-solid fa-calendar-days"></i>Now</a>
<a href="/contact"><i class="fa-solid fa-address-card"></i>Contact</a>
<a href="/more"><i class="fa-solid fa-bars"></i> More</a>
</nav>

<style>
nav > a:not(:last-child) {
margin-right: 0.2em;
margin-right: 0.7rem;
}

.fa-solid {

margin-right: 5px;
}

a {
padding: 12px 18px;
border-radius: 3em 2em;
text-decoration: none;
}
Expand Down
3 changes: 2 additions & 1 deletion src/layouts/MDLayout.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import Layout from "./PageLayout.astro";
const { frontmatter: f } = Astro.props;
const fixedDate = new Date(f.lastUpdated)
---

<Layout
Expand All @@ -9,7 +10,7 @@ const { frontmatter: f } = Astro.props;
back={f.back}
icon={f.icon}
uc={f.uc}
lastUpdated={f.lastUpdated}
lastUpdated={fixedDate}
>
<slot />
</Layout>
9 changes: 8 additions & 1 deletion src/pages/more.astro
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ import Layout from "@lay/PageLayout.astro";
></i>
<a href="/meta/changelog">/changelog</a>, updates with this site.
</li>
<li>
<i
class="fa-li fa-solid fa-code-branch"
style="color: light-dark(var(--ctp-latte-red), var(--ctp-mocha-red));"
></i>
<a href="/meta/changelog">/changelog</a>, updates with this site.
</li>
<li>
<i
class="fa-li fa-solid fa-wand-magic-sparkles"
Expand All @@ -44,4 +51,4 @@ import Layout from "@lay/PageLayout.astro";
<ul>
<li>/about</li>
</ul>
</Layout>
</Layout>

0 comments on commit 9819c15

Please sign in to comment.