57 lines
1.1 KiB
Markdown
57 lines
1.1 KiB
Markdown
# README
|
|
|
|
## Inhaltsverzeichnis
|
|
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
|
|
|
|
---
|
|
|
|
## Struktur
|
|
|
|
| Name | Pfad |
|
|
| --------------- | ----------- |
|
|
| Templates | /templates/ |
|
|
| Seiten | /pages/ |
|
|
| Events | /events/ |
|
|
| Bilder | /images/ |
|
|
| CSS | /css/ |
|
|
| PHP Scripts | /php/ |
|
|
|
|
## Erstellen neuer Events
|
|
|
|
Datei im Eventverzeichnis Anlegen: *YYYY-MM-DD.html*
|
|
|
|
```
|
|
Blogpost Titel
|
|
Blogpost Beschreibung
|
|
Blogpost Datum
|
|
Blogpost Autor
|
|
------------------------
|
|
# Content below here!
|
|
```
|
|
|
|
Strukturierung:
|
|
|
|
- Header
|
|
```
|
|
Blogpost Titel
|
|
Blogpost Beschreibung
|
|
Blogpost Datum
|
|
Blogpost Autor
|
|
```
|
|
|
|
- Trenner zwischen Header und Content
|
|
```
|
|
------------------------
|
|
```
|
|
|
|
- Content
|
|
```
|
|
# Content below here!
|
|
```
|
|
|
|
Unter dem Trenner kann Markdown verwendet werden.
|
|
|
|
Bilder für Posts kommen in das Verzeichnis */images/posts/*
|
|
|
|
[Event Dokumentation](https://git.ctdo.de/xoy/ctdo.de/src/branch/master/EVENT.MD) |