35 lines
1.3 KiB
Markdown
35 lines
1.3 KiB
Markdown
# WikiJS Theme und Client-Side Scripte
|
|
|
|
Dieses Repo enthält 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 Head Injections
|
|
|
|
```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">
|
|
<link rel="stylesheet" href="https://wiki.stuve.uni-ulm.de/c/styles/stuve-colors.css">
|
|
```
|
|
|
|
#### HTML Body Injections
|
|
|
|
```html
|
|
<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.
|
|
|
|
```javascript
|
|
window.boot.register("page-ready", () => {
|
|
main()
|
|
})
|
|
``` |