entry code

This commit is contained in:
2026-01-08 20:30:31 +00:00
parent 8036367bf6
commit 8fb35222ac
4 changed files with 65 additions and 39 deletions

View File

@@ -1,34 +1,28 @@
<template> <script setup>
<div class="flex-col"> import VideoTable from "@/components/quick/VideoTable.vue";
<p><a href="https://wiki.teamfortress.com/wiki/Demoman">The goat</a></p>
<video class="bdr-1" width="300" height="400" controls preload="none">
<source
src="/img/demoman/1760582395316219.webm"
type="video/webm"
/>
</video>
<video class="bdr-1" width="300" height="400" controls preload="none">
<source
src="/img/demoman/1761052136609718.webm"
type="video/webm"
/>
</video>
<video class="bdr-1" width="600" height="400" controls preload="none">
<source src="/img/demoman/1761088452011210.mp4" type="video/mp4" />
</video>
<video class="bdr-1" width="600" height="400" controls preload="none">
<source
src="/img/demoman/1761570214170465.webm"
type="video/webm"
/>
</video>
<video class="bdr-1" width="600" height="400" controls preload="none">
<source
src="/img/demoman/1761828457509465.webm"
type="video/webm"
/>
</video>
</div>
</template>
<style scoped></style> const videoSources = [
{ name: "demoman", link: "/img/demoman/1760582395316219.webm" },
{ name: "demoman", link: "/img/demoman/1761052136609718.webm" },
{ name: "demoman", link: "/img/demoman/1761088452011210.mp4" },
{ name: "demoman", link: "/img/demoman/1761570214170465.webm" },
{ name: "demoman", link: "/img/demoman/1761828457509465.webm" },
];
</script>
<template>
<main class="center-content flex-col">
<div
class="a4page-portrait bdr-1 flex-row relative scroll-y center-content"
>
<p>
<a href="https://wiki.teamfortress.com/wiki/Demoman"
>The goat</a
>
</p>
<div>
<VideoTable :sourceArr="videoSources" />
</div>
</div>
</main>
</template>

View File

@@ -1,3 +1,13 @@
<template></template> <script setup>
import Wip from "@/components/quick/Wip.vue";
</script>
<script></script> <template>
<main class="center-content flex-col">
<div
class="a4page-portrait center-content bdr-1 flex-col relative scroll-y"
>
<Wip />
</div>
</main>
</template>

View File

@@ -1,2 +1,13 @@
<template></template> <script setup>
<script></script> import Wip from "@/components/quick/Wip.vue";
</script>
<template>
<main class="center-content flex-col">
<div
class="a4page-portrait center-content bdr-1 flex-col relative scroll-y"
>
<Wip />
</div>
</main>
</template>

View File

@@ -1,2 +1,13 @@
<template></template> <script setup>
<script></script> import Wip from "@/components/quick/Wip.vue";
</script>
<template>
<main class="center-content flex-col">
<div
class="a4page-portrait center-content bdr-1 flex-col relative scroll-y"
>
<Wip />
</div>
</main>
</template>