tangled
alpha
login
or
join now
gm112.bsky.social
/
org.neocities.gm112
0
fork
atom
Code for https://gm112.neocities.org/
gm112.neocities.org/
0
fork
atom
overview
issues
4
pulls
pipelines
chore: markup cleanup
gm112.bsky.social
4 weeks ago
c23029bb
c47d4319
1/1
deploy.yaml
success
47s
+3
-3
2 changed files
expand all
collapse all
unified
split
app
components
post
detail.vue
pages
[...slug].vue
+1
-1
app/components/post/detail.vue
···
3
3
<ui-widget class="border-0 border-alttp">
4
4
<template #header>
5
5
<section class="p-2 mx-2">
6
6
-
<h1 class="text-3xl">
6
6
+
<h1 class="text-[32px]">
7
7
{{ page.title }}
8
8
</h1>
9
9
<h2 v-if="!!page.description" class="text-sm py-2">
+2
-2
app/pages/[...slug].vue
···
1
1
<template>
2
2
<!-- <post-toc :page="page" color="neutral" class="p-2 sm:pl-4" /> -->
3
3
-
<u-container>
3
3
+
<div>
4
4
<post-detail
5
5
v-if="page"
6
6
:page="page"
···
17
17
<u-content-surround :surround="surroundings" class="border-alttp bg-black" />
18
18
</post-detail>
19
19
<u-skeleton v-else class="flex-1" />
20
20
-
</u-container>
20
20
+
</div>
21
21
</template>
22
22
23
23
<script setup lang="ts">