-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa87029
commit 0eeef13
Showing
4 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
import './../../app.css'; | ||
import 'flowbite/dist/flowbite.css'; | ||
import Nav from '../components/Nav.svelte'; | ||
import Footer from '../components/Footer.svelte'; | ||
import Content from './Content.svelte'; | ||
export const prerender = true; | ||
</script> | ||
|
||
<div class="container mx-auto mt-20"> | ||
<Nav /> | ||
<Content /> | ||
</div> | ||
<Footer /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
<script> | ||
import BaseComponent from '../components/BaseComponent.svelte'; | ||
</script> | ||
|
||
<BaseComponent headline={'Code Of Conduct'} id={'Codeofconduct'}> | ||
<section class="text-justify dark:text-white"> | ||
<p> | ||
Ratisbona Coding and Hackaburg stands for inclusivity. We believe that every single person has | ||
the right to hack in a safe and welcoming environment. | ||
</p> | ||
<p> | ||
Harassment includes but is not limited to offensive verbal or written comments related to | ||
gender, age, sexual orientation, disability, physical appearance, body size, race, religion, | ||
social class, economic status, veteran status. Additional cases of harassment include but not | ||
limited to sharing sexual images, deliberate intimidation, stalking, following, brigading, | ||
doxxing, harassing photography or recording, sustained disruption of talks or other events, | ||
inappropriate physical contact, and unwelcome sexual attention. If what you’re doing is making | ||
someone feel uncomfortable, that counts as harassment and is enough reason to stop doing it. | ||
</p> | ||
<p>Participants asked to stop any harassing behavior are expected to comply immediately.</p> | ||
<p> | ||
Sponsors, judges, mentors, volunteers, organizers, Ratisbona Coding and Hackaburg staff, and | ||
anyone else participating in the event are also subject to the anti-harassment policy. In | ||
particular, attendees should not use sexualised images, activities, or other material both in | ||
their hacks and during the event. Booth staff (including volunteers) should not use sexualised | ||
clothing/uniforms/costumes, or otherwise create a sexualised environment. | ||
</p> | ||
<p> | ||
If a participant engages in harassing behavior, Ratisbona Coding and Hackaburg may take any | ||
action it deems appropriate, including warning the offender or expulsion from the event with | ||
no eligibility for reimbursement or refund of any type. | ||
</p> | ||
<p> | ||
If you are being harassed, notice that someone else is being harassed, or have any other | ||
concerns, please contact Ratisbona Coding and Hackaburg using the reporting procedures defined | ||
below. | ||
</p> | ||
<p> | ||
Ratisbona Coding and Hackaburg representatives can help participants contact campus security | ||
or local law enforcement, provide escorts, or otherwise assist those experiencing harassment | ||
to feel safe for the duration of the event. We value your attendance. | ||
</p> | ||
<p> | ||
We expect participants to follow these rules at all hackathon venues, online interactions in | ||
relation to the event, hackathon-related social events, and on hackathon supplied | ||
transportation. | ||
</p> | ||
<h2 id="reporting-procedures">Reporting Procedures</h2> | ||
<p> | ||
If you feel uncomfortable or think there may be a potential violation of the code of conduct, | ||
please report it immediately using one of the following methods. All reporters have the right | ||
to remain anonymous. | ||
</p> | ||
<p> | ||
Ratisbona Coding and Hackaburg reserves the right to revise, make exceptions to, or otherwise | ||
amend these policies in whole or in part. If you have any questions regarding these policies, | ||
please contact Ratisbona Coding and Hackaburg by e-mail at [email protected]. | ||
</p> | ||
|
||
<h2 id="special-incidents">Special Incidents</h2> | ||
|
||
<p> | ||
Ratisbona Coding and Hackaburg reserves the right to revise, make exceptions to, or otherwise | ||
amend these policies in whole or in part. If you have any questions regarding these policies, | ||
please contact Ratisbona Coding and Hackaburg by e-mail at [email protected]. | ||
</p> | ||
<p>This document was last updated on: February 27th 2024</p> | ||
</section> | ||
</BaseComponent> | ||
|
||
<style scoped> | ||
h2 { | ||
font-weight: bold; | ||
text-decoration: underline; | ||
margin-bottom: 1rem; | ||
} | ||
h3 { | ||
margin-bottom: 1rem; | ||
} | ||
p { | ||
margin-bottom: 1rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,8 +20,8 @@ | |
<div class="mb-4 dark:text-white"> | ||
<p class="underline">Vertretungsberechtigte Personen:</p> | ||
<span>Markus Guder (1. Vorsitzender)</span> <br /> | ||
<span>Sumia Dühlmeyer (2. Vorsitzende)</span><br /> | ||
<span>Ewald Reinhardt (Kassier)</span><br /> | ||
<span>Ewald Reinhardt (2. Vorsitzende)</span><br /> | ||
<span>Samuel Roben (Kassier)</span><br /> | ||
<span>Bastian Meißner (Beisitzer)</span><br /> | ||
<p>[email protected]</p> | ||
<p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// vite.config.ts | ||
import { sveltekit } from "file:///Users/markusguder/workspace/website-new/node_modules/@sveltejs/kit/src/exports/vite/index.js"; | ||
var config = { | ||
plugins: [sveltekit()], | ||
server: { | ||
fs: { | ||
allow: ["slicemachine.config.json"] | ||
} | ||
} | ||
}; | ||
var vite_config_default = config; | ||
export { | ||
vite_config_default as default | ||
}; | ||
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsidml0ZS5jb25maWcudHMiXSwKICAic291cmNlc0NvbnRlbnQiOiBbImNvbnN0IF9fdml0ZV9pbmplY3RlZF9vcmlnaW5hbF9kaXJuYW1lID0gXCIvVXNlcnMvbWFya3VzZ3VkZXIvd29ya3NwYWNlL3dlYnNpdGUtbmV3XCI7Y29uc3QgX192aXRlX2luamVjdGVkX29yaWdpbmFsX2ZpbGVuYW1lID0gXCIvVXNlcnMvbWFya3VzZ3VkZXIvd29ya3NwYWNlL3dlYnNpdGUtbmV3L3ZpdGUuY29uZmlnLnRzXCI7Y29uc3QgX192aXRlX2luamVjdGVkX29yaWdpbmFsX2ltcG9ydF9tZXRhX3VybCA9IFwiZmlsZTovLy9Vc2Vycy9tYXJrdXNndWRlci93b3Jrc3BhY2Uvd2Vic2l0ZS1uZXcvdml0ZS5jb25maWcudHNcIjtpbXBvcnQgeyBzdmVsdGVraXQgfSBmcm9tICdAc3ZlbHRlanMva2l0L3ZpdGUnO1xuaW1wb3J0IHR5cGUgeyBVc2VyQ29uZmlnIH0gZnJvbSAndml0ZSc7XG5cbmNvbnN0IGNvbmZpZzogVXNlckNvbmZpZyA9IHtcblx0cGx1Z2luczogW3N2ZWx0ZWtpdCgpXSxcblx0c2VydmVyOiB7XG5cdFx0ZnM6IHtcblx0XHRcdGFsbG93OiBbXCJzbGljZW1hY2hpbmUuY29uZmlnLmpzb25cIl1cblx0XHR9XG5cdH1cbn07XG5cbmV4cG9ydCBkZWZhdWx0IGNvbmZpZztcbiJdLAogICJtYXBwaW5ncyI6ICI7QUFBMFMsU0FBUyxpQkFBaUI7QUFHcFUsSUFBTSxTQUFxQjtBQUFBLEVBQzFCLFNBQVMsQ0FBQyxVQUFVLENBQUM7QUFBQSxFQUNyQixRQUFRO0FBQUEsSUFDUCxJQUFJO0FBQUEsTUFDSCxPQUFPLENBQUMsMEJBQTBCO0FBQUEsSUFDbkM7QUFBQSxFQUNEO0FBQ0Q7QUFFQSxJQUFPLHNCQUFROyIsCiAgIm5hbWVzIjogW10KfQo= |