-
Notifications
You must be signed in to change notification settings - Fork 11
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
6fc75e4
commit 5c7ded4
Showing
8 changed files
with
123 additions
and
4 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,15 @@ | ||
<template> | ||
<NuxtLayout> | ||
<main class="relative bg-white"> | ||
<NuxtPage /> | ||
</main> | ||
</NuxtLayout> | ||
</template> | ||
|
||
<script setup> | ||
useHead({ | ||
bodyAttrs: { | ||
class: 'dwh-colors', | ||
}, | ||
}) | ||
</script> |
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,8 @@ | ||
<template> | ||
<LayoutBaseHeader> | ||
<template #logo> | ||
<div class="text-4xl font-bold tracking-widest text-white">LG33</div> | ||
</template> | ||
<slot /> | ||
</LayoutBaseHeader> | ||
</template> |
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,7 @@ | ||
<template> | ||
<LayoutHeader small> | ||
<h1 class="text-4xl font-normal text-white"> | ||
<slot /> | ||
</h1> | ||
</LayoutHeader> | ||
</template> |
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,56 @@ | ||
--- | ||
title: Welkom bij LG33 | ||
layout: article | ||
--- | ||
|
||
LG33 is een stichting met het doel het verwerven en beheren van fondsen teneinde extra (financiële) | ||
ondersteuning te bieden aan [DWH](https://dwhdelft.nl). | ||
|
||
LG33 is door de belastingdienst aangewezen als een algemeen nut beogende instelling. Een ANBI hoort een aantal | ||
gegevens te publiceren op haar internetsite. Hier vindt u deze gegevens van LG33 overzichtelijk bij elkaar. | ||
|
||
### Gegevens | ||
|
||
Stichting LG33 | ||
|
||
RSIN: ???<br> | ||
KVK-nummer: 63273934 | ||
|
||
Lange Geer 22<br> | ||
2611PV Delft | ||
|
||
### Bestuurders | ||
|
||
Het bestuur van LG33 bestaat uit de volgende leden: | ||
|
||
* **Jeroen** Voorzitter | ||
* **Victor** Secretaris | ||
* **Rob** Penningmeester | ||
* **Sharwin** Algemeen Bestuurslid | ||
* **Michael** Algemeen Bestuurslid | ||
|
||
### Beleidsplan | ||
|
||
Hierworden de hoofdlijnen uit het beleidsplan omschreven. | ||
|
||
### Verslag uitgeoefende activiteiten | ||
|
||
Voor een verslag van uitgeoefende activiteiten wordt verwezen naar het jaarverslag. Jaarlijks stelt LG33 het | ||
jaarverslag vast waarin onder meer verslag wordt gedaan van de uitgeoefende activiteiten over het afgelopen jaar. | ||
Het meest recente jaarverslag kan hier gevonden worden: | ||
|
||
<FilesList folder-id="1SEhPdLmDC-MxwcqiRnaMlAcvoPgnq16a"></FilesList> | ||
|
||
### Financiële verantwoording | ||
Voor een financiële verantwoording wordt verwezen naar de jaarrekening. Jaarlijks stelt LG33 de jaarrekening vast | ||
waarin de financiële verantwoording over het afgelopen jaar wordt vastgelegd. | ||
|
||
<FilesList folder-id="1wOt93uBOFba4lHrf6In1YZJPzT4L9Doi"></FilesList> | ||
|
||
### Beloningsbeleid | ||
|
||
Hier wordt het beloningsbeleid omschreven. | ||
|
||
### Contact | ||
|
||
Neem gerust contact op met LG33 via info@lg33.nl |
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,29 @@ | ||
import { resolve, join } from 'path' | ||
|
||
// https://nuxt.com/docs/api/configuration/nuxt-config | ||
export default defineNuxtConfig({ | ||
compatibilityDate: '2024-08-11', | ||
|
||
extends: '../shared/nuxt.config.ts', | ||
|
||
content: { | ||
sources: { | ||
shared: { | ||
driver: 'fs', | ||
base: resolve(__dirname, join('..', 'shared', 'content')) | ||
}, | ||
}, | ||
}, | ||
|
||
runtimeConfig: { | ||
public: { | ||
domain: 'lg33.nl', | ||
} | ||
}, | ||
|
||
app: { | ||
head: { | ||
title: 'Stichting LG33', | ||
} | ||
}, | ||
}) |
File renamed without changes.
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
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