tweak asset grabbing

This commit is contained in:
nelle 2023-08-14 02:44:37 -06:00
parent 89a5e02670
commit 66caa65308

View file

@ -18,7 +18,7 @@ const { title } = Astro.props;
<link rel="stylesheet" href="/mybulma/css/mystyles.css">
<style>
body{
background: repeat url("assets/background.gif");
background: repeat url("/assets/background.gif");
}
</style>
</head>
@ -26,7 +26,7 @@ const { title } = Astro.props;
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="assets/branding/obo-icon.png" style="border-radius: 20%">
<img src="/assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
@ -49,7 +49,7 @@ const { title } = Astro.props;
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="assets/other-branding/ko-fi-button-red.png">
<img src="/assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
@ -89,19 +89,20 @@ const { title } = Astro.props;
<footer class="footer">
<div class="content has-text-centered">
<!--Badges-->
<a href="https://jointhefediverse.net/"><image src="assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="assets/badges/chrmevil.gif"></a>
<a href="https://limepot.xyz/"><image src="/assets/badges/limepotxyz-badge00.gif"></a>
<br>
<image src="assets/badges/browser.gif">
<a href="https://jointhefediverse.net/"><image src="/assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://gnu.org"><image src="/assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="/assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="/assets/badges/chrmevil.gif"></a>
<br>
<image src="/assets/badges/browser.gif">
<a href="https://tuxcrafting.online/"><image src="assets/badges/tctek.gif"></a>
<a href="https://tuxcrafting.online/"><image src="/assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
<a href="https://cybercriminal.eu"><image src ="/assets/badges/cbrmnl.png"></a>
<br>
<a href="https://limepot.xyz/"><image src="assets/badges/limepotxyz-badge00.gif"></a>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
@ -133,8 +134,4 @@ const { title } = Astro.props;
background: #13151A;
background-size: 224px;
}
code {
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
}
</style>