add empty pages for gallery, imprint and privacy
This commit is contained in:
@@ -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=""
|
||||
)
|
||||
))
|
||||
Reference in New Issue
Block a user