wiki-js-customization/README.md

34 lines
1.2 KiB
Markdown
Raw Normal View History

2024-03-14 21:55:26 +00:00
# WikiJS Theme und Client-Side Scripte
2024-03-14 18:03:35 +00:00
2024-03-14 21:55:26 +00:00
Dieses Repo enthält das Theming und zusätzlich Client-Side Scripte für das das Wiki.
2024-03-14 18:16:44 +00:00
## Usage
2024-03-14 21:45:50 +00:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
2024-03-14 21:55:26 +00:00
#### HTML Head Injections
2024-03-14 18:16:44 +00:00
```html
2024-03-14 21:45:50 +00:00
<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">
2024-03-14 18:16:44 +00:00
```
2024-03-14 21:45:50 +00:00
2024-03-14 21:55:26 +00:00
#### HTML Body Injections
```html
<script defer src="https://wiki.stuve.uni-ulm.de/c/js/template-engine.js"></script>
```
2024-03-14 21:45:50 +00:00
## 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.
```javascript
window.boot.register("page-ready", () => {
main()
})
```