ctdo.de/README.MD

57 lines
1.1 KiB
Plaintext
Raw Normal View History

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
| Name | Pfad |
| --------------- | ----------- |
| Templates | /templates/ |
| Seiten | /pages/ |
2023-02-26 13:21:14 +00:00
| Events | /events/ |
| Bilder | /images/ |
| CSS | /css/ |
2023-02-26 13:44:19 +00:00
| PHP Scripts | /php/ |
## Erstellen neuer Events
Datei im Eventverzeichnis Anlegen: *YYYY-MM-DD.html*
2023-02-26 13:44:19 +00:00
```
Blogpost Titel
Blogpost Beschreibung
Blogpost Datum
Blogpost Autor
------------------------
# Content below here!
```
2023-02-26 13:44:19 +00:00
Strukturierung:
- Header
```
Blogpost Titel
Blogpost Beschreibung
Blogpost Datum
Blogpost Autor
```
- Trenner zwischen Header und Content
```
------------------------
```
- Content
2023-02-26 13:44:19 +00:00
```
# Content below here!
2023-02-26 13:44:19 +00:00
```
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)