You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,21 @@ Install the Python dependencies listed in `requirements.txt` with:
21
21
pip install -r requirements.txt
22
22
```
23
23
24
+
To work with the JavaScript that powers the theme you'll also need Node
25
+
dependencies. Install them with:
26
+
27
+
```bash
28
+
npm install
29
+
```
30
+
31
+
Bundled JavaScript is compiled from the source files in `assets/js/`. Run the
32
+
following to create `main.min.js` (minified with a banner) or watch for changes:
33
+
34
+
```bash
35
+
npm run build:js # minify and add banner
36
+
npm run watch:js # optional: automatically rebuild on changes
37
+
```
38
+
24
39
# ToDo
25
40
26
41
Have a consistency in the font and font sizes (ideally you want to use 2 fonts. One for the header/subtitle and one for the text. You can use this kind of website https://fontjoy.com/ which allow you to pair fonts).
0 commit comments