26 lines
1.0 KiB
Markdown
26 lines
1.0 KiB
Markdown
# wiki-js-customization
|
|
|
|
Dieses Repo enthällt das Theming und zusätzlich Client-Side Scripte für das das Wiki
|
|
|
|
## Usage
|
|
|
|
<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">
|
|
|
|
```html
|
|
<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">
|
|
```
|
|
|
|
## 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()
|
|
})
|
|
``` |