Static CMS v4 #250
@ -19,38 +19,49 @@ const AuthorCollection = {
|
|||||||
field: "type",
|
field: "type",
|
||||||
value: "author",
|
value: "author",
|
||||||
},
|
},
|
||||||
view_filters: [
|
view_filters: {
|
||||||
|
filters: [
|
||||||
{
|
{
|
||||||
|
name: "active",
|
||||||
label: "aktiv",
|
label: "aktiv",
|
||||||
field: "active",
|
field: "active",
|
||||||
pattern: true,
|
pattern: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
name: "inactive",
|
||||||
label: "inaktiv",
|
label: "inaktiv",
|
||||||
field: "active",
|
field: "active",
|
||||||
pattern: false,
|
pattern: false,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
name: "simplified",
|
||||||
label: "einfach",
|
label: "einfach",
|
||||||
field: "simplified",
|
field: "simplified",
|
||||||
pattern: true,
|
pattern: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
name: "extended",
|
||||||
label: "erweitert",
|
label: "erweitert",
|
||||||
field: "simplified",
|
field: "simplified",
|
||||||
pattern: false,
|
pattern: false,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
view_groups: [
|
},
|
||||||
|
view_groups: {
|
||||||
|
default: "active",
|
||||||
|
groups: [
|
||||||
{
|
{
|
||||||
|
name: "simplified",
|
||||||
label: "vereinfacht",
|
label: "vereinfacht",
|
||||||
field: "simplified",
|
field: "simplified",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
name: "active",
|
||||||
label: "aktiv",
|
label: "aktiv",
|
||||||
field: "active",
|
field: "active",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
},
|
||||||
summary_fields: ["title", "active", "simplified", "body"],
|
summary_fields: ["title", "active", "simplified", "body"],
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
|
@ -24,12 +24,16 @@ const BlogCollection = {
|
|||||||
field: "type",
|
field: "type",
|
||||||
value: "post",
|
value: "post",
|
||||||
},
|
},
|
||||||
view_groups: [
|
view_groups: {
|
||||||
|
default: "draft",
|
||||||
|
groups: [
|
||||||
{
|
{
|
||||||
|
name: "draft",
|
||||||
label: "Entwurf",
|
label: "Entwurf",
|
||||||
field: "draft",
|
field: "draft",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
},
|
||||||
sortable_fields: {
|
sortable_fields: {
|
||||||
fields: ["date", "title"],
|
fields: ["date", "title"],
|
||||||
default: {
|
default: {
|
||||||
|
@ -19,12 +19,6 @@ const CantorforaCollection = {
|
|||||||
frame: true,
|
frame: true,
|
||||||
size: "half",
|
size: "half",
|
||||||
},
|
},
|
||||||
view_groups: [
|
|
||||||
{
|
|
||||||
label: "Entwürfe",
|
|
||||||
field: "draft",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
summary_fields: ["title", "draft", "description"],
|
summary_fields: ["title", "draft", "description"],
|
||||||
sortable_fields: {
|
sortable_fields: {
|
||||||
fields: ["index", "title"],
|
fields: ["index", "title"],
|
||||||
|
@ -17,6 +17,7 @@ import {
|
|||||||
SuperhaufenCollection,
|
SuperhaufenCollection,
|
||||||
WettbewerbeCollection,
|
WettbewerbeCollection,
|
||||||
} from "./collections/index.js";
|
} from "./collections/index.js";
|
||||||
|
import { GCGThemeDark, GCGThemeLight } from "./themes.js";
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
backend: {
|
backend: {
|
||||||
@ -48,6 +49,13 @@ const config = {
|
|||||||
clean_accents: true,
|
clean_accents: true,
|
||||||
sanitize_replacement: "-",
|
sanitize_replacement: "-",
|
||||||
},
|
},
|
||||||
|
theme: {
|
||||||
|
include_built_in_themes: false,
|
||||||
|
themes: [
|
||||||
|
GCGThemeDark,
|
||||||
|
GCGThemeLight
|
||||||
|
]
|
||||||
|
},
|
||||||
collections: [
|
collections: [
|
||||||
SettingsCollection,
|
SettingsCollection,
|
||||||
IndexPagesCollection,
|
IndexPagesCollection,
|
||||||
|
@ -7,6 +7,7 @@ import {
|
|||||||
StatsCollection,
|
StatsCollection,
|
||||||
SuperhaufenCollection,
|
SuperhaufenCollection,
|
||||||
} from "./collections/index.js";
|
} from "./collections/index.js";
|
||||||
|
import { GCGThemeDark, GCGThemeLight } from "./themes.js";
|
||||||
|
|
||||||
const config = {
|
const config = {
|
||||||
backend: {
|
backend: {
|
||||||
@ -38,6 +39,13 @@ const config = {
|
|||||||
clean_accents: true,
|
clean_accents: true,
|
||||||
sanitize_replacement: "-",
|
sanitize_replacement: "-",
|
||||||
},
|
},
|
||||||
|
theme: {
|
||||||
|
include_built_in_themes: false,
|
||||||
|
themes: [
|
||||||
|
GCGThemeDark,
|
||||||
|
GCGThemeLight
|
||||||
|
]
|
||||||
|
},
|
||||||
collections: [
|
collections: [
|
||||||
ChronikjahreCollection,
|
ChronikjahreCollection,
|
||||||
SuperhaufenCollection,
|
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
|
<link
|
||||||
rel="stylesheet"
|
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>Static CMS</title>
|
<title>Static CMS</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<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">
|
<script type="module">
|
||||||
import config from "./config/index.js";
|
import config from "./config/index.js";
|
||||||
// imports
|
// imports
|
||||||
|
@ -9,12 +9,12 @@
|
|||||||
/>
|
/>
|
||||||
<link
|
<link
|
||||||
rel="stylesheet"
|
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>
|
<title>Chronikverwaltung</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<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">
|
<script type="module">
|
||||||
import config from "../../admin/config/schulchronik.js";
|
import config from "../../admin/config/schulchronik.js";
|
||||||
// imports
|
// imports
|
||||||
|
Loading…
x
Reference in New Issue
Block a user