diff --git a/gaehsnitz/templates/gaehsnitz/atoz.html b/gaehsnitz/templates/gaehsnitz/atoz.html new file mode 100644 index 0000000..b9a6414 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/atoz.html @@ -0,0 +1,15 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +

Adresse

+

Bar

+

Bühne

+

Essen

+

Mucke

+

Müll

+

Sanitär

+ +

... und vieles mehr

+ +{% endblock %} diff --git a/gaehsnitz/templates/gaehsnitz/base.html b/gaehsnitz/templates/gaehsnitz/base.html index badc154..c0d94b9 100644 --- a/gaehsnitz/templates/gaehsnitz/base.html +++ b/gaehsnitz/templates/gaehsnitz/base.html @@ -15,11 +15,11 @@
diff --git a/gaehsnitz/templates/gaehsnitz/index.html b/gaehsnitz/templates/gaehsnitz/index.html deleted file mode 100644 index 794d092..0000000 --- a/gaehsnitz/templates/gaehsnitz/index.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "gaehsnitz/base.html" %} - -{% block content %} - -

Bald, dooo!

- -

Das bisschen Website macht sich von allein, nimmt man an.

- -{% endblock %} diff --git a/gaehsnitz/templates/gaehsnitz/news.html b/gaehsnitz/templates/gaehsnitz/news.html new file mode 100644 index 0000000..092d5a6 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/news.html @@ -0,0 +1,9 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +

21.05. - neue Website

+ +

Schürt's euch rein!

+ +{% endblock %} diff --git a/gaehsnitz/templates/gaehsnitz/program.html b/gaehsnitz/templates/gaehsnitz/program.html new file mode 100644 index 0000000..c63ba85 --- /dev/null +++ b/gaehsnitz/templates/gaehsnitz/program.html @@ -0,0 +1,16 @@ +{% extends "gaehsnitz/base.html" %} + +{% block content %} + +

Bands

+

The Residudes - Stoner Blues aus Leipzig

+

Quast - Finn-Pop aus Köln

+

Melo-Komplott - Melodic Rock aus Altenburg

+

Direct Juice - 7-Ply-Hardcore aus Magdeburg

+

As The Lights Fade - Metalcore aus Berlin

+

...

+ +

und sonst so ...

+

Flunkyball, Open Jam Session, ...

+ +{% endblock %} diff --git a/gaehsnitz/urls.py b/gaehsnitz/urls.py index 4870f46..5daecd4 100644 --- a/gaehsnitz/urls.py +++ b/gaehsnitz/urls.py @@ -1,7 +1,9 @@ from django.urls import path -from gaehsnitz.views import IndexView +from gaehsnitz.views import NewsView, AToZView, ProgramView urlpatterns = [ - path("", IndexView.as_view(), name="index"), + path("", NewsView.as_view(), name="news"), + path("atoz", AToZView.as_view(), name="atoz"), + path("program", ProgramView.as_view(), name="program"), ] diff --git a/gaehsnitz/views.py b/gaehsnitz/views.py index 9a0e789..f58da25 100644 --- a/gaehsnitz/views.py +++ b/gaehsnitz/views.py @@ -1,5 +1,13 @@ from django.views.generic import TemplateView -class IndexView(TemplateView): - template_name = "gaehsnitz/index.html" +class NewsView(TemplateView): + template_name = "gaehsnitz/news.html" + + +class AToZView(TemplateView): + template_name = "gaehsnitz/atoz.html" + + +class ProgramView(TemplateView): + template_name = "gaehsnitz/program.html"