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
This Jekyll blog theme is based on [The-MVM](https://github.com/the-mvm/the-mvm.github.io) (which on its turn is based on [Adam-blog](https://github.com/artemsheludko/adam-blog) and further adapted for the UB Maastricht use case.
3
2
4
-
```python
5
-
defmy_function():
6
-
print("hello world")
7
-
8
-
my_function()
3
+
4
+
## Run in production
5
+
The theme fully compliant with [GitHub pages](https://pages.github.com/) and can be deployed using GitHub actions.
6
+
7
+
## Run locally
8
+
9
+
### Preparation
10
+
Install the required packages as described in the [Jekyll docs](https://jekyllrb.com/docs/). For convenience, these are the steps in Ubuntu:
Change directory to the folder where this repo and the `Gemfile` is located.
35
+
```
36
+
cd /path/to/this/workdir
37
+
```
38
+
39
+
Install Gems from Gemfile with
40
+
```
41
+
bundle install
42
+
```
43
+
44
+
45
+
### Run site
46
+
Start the site with
47
+
```
48
+
bundle exec jekyll serve
49
+
```
50
+
51
+
Access the site at http://localhost:4000
52
+
53
+
54
+
55
+
## More details
56
+
More details about Jekyll, the folder structure and workings can be found in the [MVM readme](https://github.com/the-mvm/the-mvm.github.io/blob/main/README.md).
0 commit comments