init
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
<script setup lang="ts">
|
||||
|
||||
import { AeroThemeProvider, AeroSky, Card, Btn } from "@3ba/vue";
|
||||
import Navbar from "../components/Navbar.vue";
|
||||
import "@3ba/styles";
|
||||
import Footer from "../components/Footer.vue";
|
||||
</script>
|
||||
<template>
|
||||
<div :style="{ minHeight: '100vh', padding: '32px', }">
|
||||
<div style="display: flex; flex-direction: column; gap: 20px;">
|
||||
<Navbar :active="0"></Navbar>
|
||||
<Card>
|
||||
<h2>Mi ez az oldal?</h2>
|
||||
<div style="text-align: left;">
|
||||
Ez az oldal megmondja melyik szobába kell menni éjfélkor szülinapot ünnepelni. Ha nem tudod melyik intézményről van szó, akkor valószínűleg rossz helyen jársz.
|
||||
</div>
|
||||
<h2>Miért ilyen ocsmány?</h2>
|
||||
<div style="text-align: left;">
|
||||
Azért, mert próbálkoztam a Vue frontend frameworkkel a vicc kedvéért és nagyon megkedveltem a <a href="https://frutigeraeroarchive.org/" target="_blank">Frutiger Aero</a> stílust.
|
||||
</div>
|
||||
<h2>Mi az a csúnya szó?</h2>
|
||||
<div style="text-align: left;">
|
||||
A Kréta forráskód szivárogtatásában talált, méltán híres <a href="https://github.com/HexadecimalHUN/DirtyWords/blob/main/DirtyWords.xml">dirtywords.xml</a>-ből random generált kifejezések
|
||||
</div>
|
||||
<h2>Credit?</h2>
|
||||
<div style="text-align: left;">
|
||||
A Vue komponensek nagy része <a href="https://github.com/3ba/aero">ezen a Github repo</a>-n alapszik, szóval nagy köszönet bárki is csinálta.
|
||||
</div>
|
||||
<h2>Licence?</h2>
|
||||
<div style="text-align: left;">
|
||||
This is a non-commercial website, with no plans to ever become one. That should cover my ass for the font and the background image(s) I think.
|
||||
</div>
|
||||
</Card>
|
||||
<Card>
|
||||
<h2>Elérhetőségek/contact</h2>
|
||||
<ul style="text-align: left; font-size: 1.2rem;">
|
||||
<li>- Élőben 734 (nyáron, remélem nem felejtem ezt el frissíteni)</li>
|
||||
<li>- <a href="mailto:peter@sc0tt.org">peter@sc0tt.org</a></li>
|
||||
</ul>
|
||||
</Card>
|
||||
<Card>
|
||||
<div>
|
||||
Csúnya szó: {{ DirtyWord }}
|
||||
</div>
|
||||
</Card>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import axios from 'axios';
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
DirtyWord: '',
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
axios
|
||||
.get('https://scapi.sc0tt.org/dirtywords')
|
||||
.then(response => {
|
||||
this.DirtyWord = response.data.dirty;
|
||||
});
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
a {
|
||||
color: blue;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a.visited {
|
||||
color: purple;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user