.gitea
assets
content
data
layouts
static
admin
config
links
previews
field-previews
page-previews
components
base.js
date-format.js
index.js
md5.js
page-header.js
abiturienten-preview.js
about-preview.js
anmeldeformular-preview.js
anmeldung-preview.js
author-preview.js
blog-preview.js
cantorpreis-preview.js
chronik-index-preview.js
chronik-preview.js
contest-preview.js
event-preview.js
forms-preview.js
ganztag-preview.js
header-preview.js
index.js
kontakt-preview.js
page-preview.js
projektwoche-preview.js
styles.js
shortcodes
icons.js
index.html
data
media
schulchronik
favicon.ico
.gitignore
.mailmap
LICENSE
config.yml
go.mod
go.sum
renovate.json
9 lines
459 B
JavaScript
9 lines
459 B
JavaScript
const Section = (children) =>
|
|
h("section", { className: "section" }, children);
|
|
const Container = (children) => h("div", { className: "container" }, children);
|
|
const Row = (children) => h("div", { className: "row" }, children);
|
|
const ContentJustify = (children) => h("div", { className: "content text-justify" }, children);
|
|
const Col12 = (children) => h("div", { className: "col-12" }, children);
|
|
|
|
export { Section, Container, Row, ContentJustify, Col12 };
|