Denys Konovalov
a275283b6e
- [x] Update auf Static CMS v2.0 - [x] aktualisierte Shortcodes (schließt #225) - [x] aktualisierte Previews (schließt #181) - Ordnerunterstützung - [x] vervollständigte Seiten - [x] Aufräumarbeiten Reviewed-on: https://git.cantorgymnasium.de/gcg/gcg-website/pulls/226
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
import { Container, PageHeader, Row, Section } from "./components/index.js";
|
|
|
|
const ProjektwochePreview = ({ widgetsFor, widgetFor, entry }) => {
|
|
return [
|
|
PageHeader(entry),
|
|
Section([
|
|
Container(
|
|
Row(h("div", { className: "col-12 mb-4 content" }, widgetFor("body")))
|
|
),
|
|
Container(
|
|
Row([
|
|
widgetsFor("tiles").map((tile) =>
|
|
h(
|
|
"div",
|
|
{ className: "col-lg-4 col-sm-6" },
|
|
h(
|
|
"div",
|
|
{
|
|
className: "card border-primary rounded-0 hover-shadow mb-4",
|
|
},
|
|
h(
|
|
"div",
|
|
{
|
|
className: "container fb-tile-color",
|
|
style: { backgroundColor: tile.data.bg_color },
|
|
},
|
|
h("i", {
|
|
className: (tile.data.icon ?? "") + " fb-tile-icon",
|
|
style: { color: tile.data.font_color },
|
|
})
|
|
),
|
|
h(
|
|
"div",
|
|
{ className: "card-body" },
|
|
h(
|
|
"h4",
|
|
{ className: "card-title text-truncate" },
|
|
tile.data.title
|
|
),
|
|
h(
|
|
"button",
|
|
{ type: "button", className: "btn btn-primary btn-sm" },
|
|
"Mehr anzeigen"
|
|
)
|
|
)
|
|
)
|
|
)
|
|
),
|
|
])
|
|
),
|
|
]),
|
|
];
|
|
};
|
|
|
|
export default ProjektwochePreview;
|