Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das das Wiki
Go to file
Valentin Kolb e931b78315
Build and Push Docker image / build-and-push (push) Successful in 44s Details
fixed typo
2024-03-18 16:29:04 +01:00
.gitea/workflows added webhook to ci/cd 2024-03-14 21:39:23 +01:00
srv fixed typo 2024-03-18 16:29:04 +01:00
test changed names of css vars 2024-03-18 15:29:35 +01:00
.gitignore initial commit 2024-03-14 19:06:36 +01:00
Dockerfile refactor and added Dockerfile & Demo Action 2024-03-14 20:10:46 +01:00
LICENSE Initial commit 2024-03-14 18:03:35 +00:00
README.md added classes for stuve colors 2024-03-18 16:00:49 +01:00

README.md

WikiJS Theme und Client-Side Scripte

Dieses Repo enthält das Theming und zusätzlich Client-Side Scripte für das das Wiki.

Usage

HTML Head Injections

<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/main.css">
<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/tables.css">
<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/template-engine.css">
<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/boxes.css">
<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/stuve-colors.css">

HTML Body Injections

<script defer src="https://wiki.stuve.uni-ulm.de/c/js/template-engine.js"></script>

JS Entwicklung

Damit das Custom JA erst ausgeführt wird, wenn das Wiki (Vue.js) die Seite vollständig geladen hat, muss das Custom JS in einem Event registriert werden.

window.boot.register("page-ready", () => {
    main()
})