2023-02-26 13:21:14 +00:00
|
|
|
# README
|
|
|
|
|
2023-02-26 14:21:08 +00:00
|
|
|
## Inhaltsverzeichnis
|
2023-02-26 15:07:21 +00:00
|
|
|
0. [README](https://git.ctdo.de/xoy/ctdo.de/src/branch/master/README.MD) - Übersicht
|
|
|
|
1. [SCRUMBOARD](https://git.ctdo.de/xoy/ctdo.de/src/branch/master/SCRUMBOARD.MD) - Entwicklungsplan
|
2023-02-26 14:21:08 +00:00
|
|
|
|
|
|
|
---
|
2023-02-26 13:44:19 +00:00
|
|
|
|
2023-02-26 13:21:14 +00:00
|
|
|
## Struktur
|
|
|
|
|
2023-09-20 13:38:13 +00:00
|
|
|
| Name | Pfad |
|
|
|
|
| --------------------------------- | --------------- |
|
|
|
|
| Templates | /templates/ |
|
|
|
|
| Seiten / Seiteninhalte | /pages/ |
|
|
|
|
| Events | /events/ |
|
|
|
|
| Bilder | /images/ |
|
|
|
|
| Post Bilder | /images/posts/ |
|
|
|
|
| CSS | /css/ |
|
|
|
|
| PHP Scripts | /php/ |
|
2023-02-26 13:44:19 +00:00
|
|
|
|
|
|
|
## Erstellen neuer Events
|
|
|
|
|
2023-05-06 14:38:25 +00:00
|
|
|
Datei im Eventverzeichnis Anlegen:
|
|
|
|
- Nummerierung beachten!
|
|
|
|
- *.md* Dateierweiterung verwenden!
|
2023-02-26 13:44:19 +00:00
|
|
|
|
2023-02-27 07:34:39 +00:00
|
|
|
```
|
2023-05-06 14:34:12 +00:00
|
|
|
Blogpost Titel
|
|
|
|
Blogpost Beschreibung
|
|
|
|
Blogpost Datum
|
|
|
|
Blogpost Autor
|
2023-02-27 07:34:39 +00:00
|
|
|
------------------------
|
2023-05-06 14:38:25 +00:00
|
|
|
# Content here!
|
2023-02-27 07:34:39 +00:00
|
|
|
```
|
|
|
|
|
2023-02-26 13:44:19 +00:00
|
|
|
Strukturierung:
|
2023-02-27 07:34:39 +00:00
|
|
|
|
|
|
|
- Header
|
|
|
|
```
|
2023-05-06 14:34:12 +00:00
|
|
|
Blogpost Titel
|
|
|
|
Blogpost Beschreibung
|
|
|
|
Blogpost Datum
|
|
|
|
Blogpost Autor
|
2023-02-27 07:34:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
- Trenner zwischen Header und Content
|
|
|
|
```
|
|
|
|
------------------------
|
|
|
|
```
|
|
|
|
|
2023-05-06 14:34:12 +00:00
|
|
|
- Content
|
2023-02-26 13:44:19 +00:00
|
|
|
```
|
2023-05-06 14:38:25 +00:00
|
|
|
# Content here!
|
2023-02-26 13:44:19 +00:00
|
|
|
```
|
|
|
|
|
2023-05-06 14:34:12 +00:00
|
|
|
Unter dem Trenner kann Markdown verwendet werden.
|
2023-02-27 07:41:32 +00:00
|
|
|
|
2023-05-06 14:34:12 +00:00
|
|
|
Bilder für Posts kommen in das Verzeichnis */images/posts/*
|
2023-02-27 07:41:32 +00:00
|
|
|
|
|
|
|
[Event Dokumentation](https://git.ctdo.de/xoy/ctdo.de/src/branch/master/EVENT.MD)
|