add empty pages for gallery, imprint and privacy
This commit is contained in:
@@ -3,4 +3,7 @@ from .about import About
|
||||
from .member import Member
|
||||
from .constitution import Constitution
|
||||
from .join import Join
|
||||
from .pics import Pics
|
||||
from .privacy import Privacy
|
||||
from .imprint import Imprint
|
||||
from .page_builder import build_page
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import * # type: ignore
|
||||
|
||||
import rio
|
||||
from from_root import from_root
|
||||
|
||||
from .page_builder import build_page
|
||||
from .. import components as comps
|
||||
|
||||
|
||||
class Imprint(rio.Component):
|
||||
def build(self) -> rio.Component:
|
||||
return build_page(rio.Column(
|
||||
comps.NewsPost(
|
||||
header="Impressum",
|
||||
article_text="",
|
||||
date=""
|
||||
)
|
||||
))
|
||||
@@ -0,0 +1,22 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import * # type: ignore
|
||||
|
||||
import rio
|
||||
from from_root import from_root
|
||||
|
||||
from .page_builder import build_page
|
||||
from .. import components as comps
|
||||
|
||||
|
||||
class Pics(rio.Component):
|
||||
def build(self) -> rio.Component:
|
||||
return build_page(rio.Column(
|
||||
comps.NewsPost(
|
||||
header="Galerie",
|
||||
article_text="""
|
||||
|
||||
""",
|
||||
date=""
|
||||
)
|
||||
))
|
||||
@@ -0,0 +1,22 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import * # type: ignore
|
||||
|
||||
import rio
|
||||
from from_root import from_root
|
||||
|
||||
from .page_builder import build_page
|
||||
from .. import components as comps
|
||||
|
||||
|
||||
class Privacy(rio.Component):
|
||||
def build(self) -> rio.Component:
|
||||
return build_page(rio.Column(
|
||||
comps.NewsPost(
|
||||
header="Datenschutzerklärung",
|
||||
article_text="""
|
||||
|
||||
""",
|
||||
date=""
|
||||
)
|
||||
))
|
||||
Reference in New Issue
Block a user