2023-04-19 22:44:06 +02:00
|
|
|
const PageHeader = (entry) => {
|
2023-05-29 16:22:34 +02:00
|
|
|
return h(
|
|
|
|
"section",
|
|
|
|
{
|
|
|
|
key: "page-header",
|
|
|
|
className: "page-title-section overlay",
|
|
|
|
style: {
|
|
|
|
backgroundImage:
|
|
|
|
'url("/media/titelbild.webp"),url("/media/titelbild.webp")',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
h(
|
|
|
|
"div",
|
|
|
|
{ className: "container" },
|
|
|
|
h(
|
|
|
|
"div",
|
|
|
|
{ className: "row" },
|
|
|
|
h(
|
|
|
|
"div",
|
|
|
|
{ className: "col-md-8 position-relative" },
|
|
|
|
h(
|
|
|
|
"ul",
|
|
|
|
{ className: "list-inline" },
|
|
|
|
h(
|
|
|
|
"li",
|
|
|
|
{ className: "list-inline-item h2" },
|
|
|
|
h(
|
|
|
|
"font",
|
|
|
|
{ className: "text-primary font-secondary", href: "" },
|
|
|
|
"Startseite"
|
|
|
|
)
|
|
|
|
),
|
|
|
|
h(
|
|
|
|
"li",
|
|
|
|
{ className: "list-inline-item h2" },
|
|
|
|
h("i", { className: "mdi mdi-chevron-double-right text-white" })
|
|
|
|
),
|
|
|
|
h(
|
|
|
|
"li",
|
|
|
|
{ className: "list-inline-item text-white h2 font-secondary" },
|
|
|
|
entry.data.title
|
|
|
|
)
|
|
|
|
),
|
|
|
|
h("p", { className: "text-lighten" }, entry.data.description)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2023-04-19 22:44:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default PageHeader;
|