mirror of
https://github.com/skidoodle/albert.lol.git
synced 2026-04-28 03:07:40 +02:00
changed my mind
This commit is contained in:
@@ -1,88 +0,0 @@
|
||||
---
|
||||
const services = [
|
||||
{
|
||||
name: 'gitea',
|
||||
url: 'https://git.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'pastebin',
|
||||
url: 'https://bin.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'opengist',
|
||||
url: 'https://gist.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'filebrowser',
|
||||
url: 'https://files.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'ipinfo',
|
||||
url: 'https://ip.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'teamspeak',
|
||||
url: 'https://ts.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'erettsegi',
|
||||
url: 'https://erettsegi.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'ncore-stats',
|
||||
url: 'https://nc.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'httpdebug',
|
||||
url: 'https://httpdebug.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'statuspage',
|
||||
url: 'https://status.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'watch-together',
|
||||
url: 'https://wt.albert.lol',
|
||||
},
|
||||
{
|
||||
name: 'budgetable',
|
||||
url: 'https://budgetable.demo.albert.lol',
|
||||
},
|
||||
]
|
||||
---
|
||||
|
||||
<section class='services details-list'>
|
||||
<details>
|
||||
<summary>~/services</summary>
|
||||
<div>
|
||||
<dl>
|
||||
{
|
||||
services.map(service => (
|
||||
<dt>
|
||||
<a
|
||||
href={service.url}
|
||||
target='_blank'
|
||||
rel='noopener noreferrer'>
|
||||
{service.name}
|
||||
</a>
|
||||
</dt>
|
||||
))
|
||||
}
|
||||
</dl>
|
||||
</div>
|
||||
</details>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
dl {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
||||
gap: 0.5rem;
|
||||
padding-block: 1rem;
|
||||
}
|
||||
|
||||
dt {
|
||||
margin: 0 !important;
|
||||
white-space: nowrap;
|
||||
}
|
||||
</style>
|
||||
@@ -4,7 +4,6 @@ import Nowplaying from '../components/nowplaying.astro'
|
||||
import Whoami from '../components/whoami.astro'
|
||||
import Socials from '../components/socials.astro'
|
||||
import Projects from '../components/projects.astro'
|
||||
import Services from '../components/services.astro'
|
||||
import Setup from '../components/setup.astro'
|
||||
|
||||
const title = 'albert'
|
||||
@@ -19,6 +18,5 @@ const description =
|
||||
<Whoami />
|
||||
<Socials />
|
||||
<Projects />
|
||||
<Services />
|
||||
<Setup />
|
||||
</Layout>
|
||||
|
||||
Reference in New Issue
Block a user