https://github.com/bqst/bqst.github.io
My personnal website
https://github.com/bqst/bqst.github.io
blog website
Last synced: 5 months ago
JSON representation
My personnal website
- Host: GitHub
- URL: https://github.com/bqst/bqst.github.io
- Owner: bqst
- Created: 2020-01-10T13:56:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-11-27T10:39:09.000Z (7 months ago)
- Last Synced: 2025-11-30T03:53:23.999Z (7 months ago)
- Topics: blog, website
- Language: HTML
- Homepage: http://www.bqst.fr/
- Size: 229 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bqst.github.io
## About
This is the source code for my personal website, which is hosted at [bqst.github.io](https://bqst.github.io).
## Setup
To run this project locally, you will need to have [Ruby](https://www.ruby-lang.org/en/) and [Bundler](https://bundler.io/) installed. Once you have those, run the following commands:
```bash
git clone
cd bqst.github.io
bundle install
bundle exec jekyll serve
```
## Adding a new post
To add a new post, create a new file in the `_posts` directory. The file name should be in the format `YYYY-MM-DD-title-of-post.markdown`. The file should start with the following header:
```markdown
---
layout: post
title: "Title of post"
date: YYYY-MM-DD HH:MM:SS +0100
categories: [category1, category2]
tags: [tag1, tag2]
---
```
The rest of the file should be written in [Markdown](https://www.markdownguide.org/).
## License
This project is licensed under the [MIT License](LICENSE).
## Acknowledgements
This project was built using [Jekyll](https://jekyllrb.com/), [GitHub Pages](https://pages.github.com/), and [Minimal Mistakes](https://mmistakes.github.io/minimal-mistakes/).
## Contact
If you have any questions, feel free to [contact me](https://bqst.github.io/contact/).