Static CMS v4 #246
@ -48,6 +48,7 @@ const AuthorCollection = {
|
||||
],
|
||||
},
|
||||
view_groups: {
|
||||
default: "active",
|
||||
groups: [
|
||||
{
|
||||
name: "simplified",
|
||||
|
@ -25,6 +25,7 @@ const BlogCollection = {
|
||||
value: "post",
|
||||
},
|
||||
view_groups: {
|
||||
default: "draft",
|
||||
groups: [
|
||||
{
|
||||
name: "draft",
|
||||
|
@ -19,15 +19,6 @@ const CantorforaCollection = {
|
||||
frame: true,
|
||||
size: "half",
|
||||
},
|
||||
view_groups: {
|
||||
groups: [
|
||||
{
|
||||
name: "draft",
|
||||
label: "Entwürfe",
|
||||
field: "draft",
|
||||
},
|
||||
],
|
||||
},
|
||||
summary_fields: ["title", "draft", "description"],
|
||||
sortable_fields: {
|
||||
fields: ["index", "title"],
|
||||
|
@ -17,6 +17,7 @@ import {
|
||||
SuperhaufenCollection,
|
||||
WettbewerbeCollection,
|
||||
} from "./collections/index.js";
|
||||
import { GCGThemeDark, GCGThemeLight } from "./themes.js";
|
||||
|
||||
const config = {
|
||||
backend: {
|
||||
@ -48,6 +49,13 @@ const config = {
|
||||
clean_accents: true,
|
||||
sanitize_replacement: "-",
|
||||
},
|
||||
theme: {
|
||||
include_built_in_themes: false,
|
||||
themes: [
|
||||
GCGThemeDark,
|
||||
GCGThemeLight
|
||||
]
|
||||
},
|
||||
collections: [
|
||||
SettingsCollection,
|
||||
IndexPagesCollection,
|
||||
|
@ -7,6 +7,7 @@ import {
|
||||
StatsCollection,
|
||||
SuperhaufenCollection,
|
||||
} from "./collections/index.js";
|
||||
import { GCGThemeDark, GCGThemeLight } from "./themes.js";
|
||||
|
||||
const config = {
|
||||
backend: {
|
||||
@ -38,6 +39,13 @@ const config = {
|
||||
clean_accents: true,
|
||||
sanitize_replacement: "-",
|
||||
},
|
||||
theme: {
|
||||
include_built_in_themes: false,
|
||||
themes: [
|
||||
GCGThemeDark,
|
||||
GCGThemeLight
|
||||
]
|
||||
},
|
||||
collections: [
|
||||
ChronikjahreCollection,
|
||||
SuperhaufenCollection,
|
||||
|
25
static/admin/config/themes.js
Normal file
25
static/admin/config/themes.js
Normal file
@ -0,0 +1,25 @@
|
||||
const GCGThemeDark = {
|
||||
name: "GCG.Dark",
|
||||
extends: "dark",
|
||||
primary: {
|
||||
main: "#ffbc3b",
|
||||
contrastColor: "#4b4b4b",
|
||||
},
|
||||
background: {
|
||||
main: "#1a1a37",
|
||||
dark: "#13132d",
|
||||
},
|
||||
};
|
||||
|
||||
const GCGThemeLight = {
|
||||
name: "GCG.Light",
|
||||
extends: "light",
|
||||
primary: {
|
||||
main: "#1a1a37",
|
||||
},
|
||||
background: {
|
||||
dark: "#f1f3f5",
|
||||
},
|
||||
};
|
||||
|
||||
export { GCGThemeDark, GCGThemeLight };
|
@ -9,12 +9,12 @@
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://unpkg.com/@staticcms/app@^4.0.0-beta.0/dist/main.css"
|
||||
href="https://unpkg.com/@staticcms/app@next/dist/main.css"
|
||||
/>
|
||||
<title>Static CMS</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="https://unpkg.com/@staticcms/app@^4.0.0-beta.0/dist/static-cms-app.js"></script>
|
||||
<script src="https://unpkg.com/@staticcms/app@next/dist/static-cms-app.js"></script>
|
||||
<script type="module">
|
||||
import config from "./config/index.js";
|
||||
// imports
|
||||
|
@ -9,12 +9,12 @@
|
||||
/>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/@staticcms/app@^3.0.0/dist/main.css"
|
||||
href="https://unpkg.com/@staticcms/app@next/dist/main.css"
|
||||
/>
|
||||
<title>Chronikverwaltung</title>
|
||||
</head>
|
||||
<body>
|
||||
<script src="https://cdn.jsdelivr.net/npm/@staticcms/app@^3.0.0/dist/static-cms-app.js"></script>
|
||||
<script src="https://unpkg.com/@staticcms/app@next/dist/static-cms-app.js"></script>
|
||||
<script type="module">
|
||||
import config from "../../admin/config/schulchronik.js";
|
||||
// imports
|
||||
|
Loading…
x
Reference in New Issue
Block a user