https://github.com/yorko/yorko.github.io
https://github.com/yorko/yorko.github.io
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yorko/yorko.github.io
- Owner: Yorko
- License: mit
- Created: 2016-11-11T08:25:47.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2025-01-19T16:09:06.000Z (12 months ago)
- Last Synced: 2025-02-08T10:34:47.251Z (11 months ago)
- Language: SCSS
- Size: 25.1 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yorko's blog
Here the code for my personal website is stored.
## Prereqs
- `brew install ruby`
- update gem: `gem update --system`
- install Jekyll: `gem install jekyll`
## Source
[`_config.yml`](_config.yml) – project-level configurations.
### Posts
Posts should be added as `_posts/YYYY-MM-DD-title.md`, e.g., `_posts/2022-11-09-vapnik-jackel-bet.md`
### Pages
The tabs on top (CV, Projects, etc) correspond to the documents in the [_pages](_pages) folder.
### Navigation
The navigation block is controlled via the [`_data/navigation.yml`](_data/navigation.yml) file.

Footers are set up in the [`_data/footers.yml`](_data/footers.yml) file.
### Images
Images are stored in the [images](images) folder, there are subfolders per post.
### Google Analytics 4
Just putting the GA measurement ID into `_config.yaml` didn't work, so I inserted and identical [code snippet](https://analytics.google.com/analytics/web/?authuser=0#/a186888467p342067860/admin/streams/table/4278260341) into each `_site/*.html` page.
## Building
- `bundle update --bundler`
- `bundle install`
- `bundle exec jekyll build`
- `bundle exec jekyll serve`
For development, tou can run the last command, make updates, and track the result at [localhost:4000](http://localhost:4000/)