2024-03-14 18:03:35 +00:00
# wiki-js-customization
2024-03-14 18:16:44 +00:00
Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das das Wiki
## 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 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
## 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()
})
```