https://github.com/fgebhart/blog
Source Code and Content my Static Blog App ✍️
https://github.com/fgebhart/blog
blog giscus guides markdown mkdocs-material
Last synced: about 2 months ago
JSON representation
Source Code and Content my Static Blog App ✍️
- Host: GitHub
- URL: https://github.com/fgebhart/blog
- Owner: fgebhart
- License: mit
- Created: 2022-09-09T20:44:37.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-03T15:46:14.000Z (about 2 years ago)
- Last Synced: 2025-06-06T19:08:28.616Z (about 1 year ago)
- Topics: blog, giscus, guides, markdown, mkdocs-material
- Language: HTML
- Homepage: https://blog.fgebhart.dev
- Size: 3.01 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blog
This repo contains the source code and the markdown-based content files of my blog website.
## Where is the blog hosted?
The blog can be found at [blog.fgebhart.dev](https://blog.fgebhart.dev/)
## Usage
The blog is based on [mkdocs-material](https://squidfunk.github.io/mkdocs-material/). To render the blog locally
run the following commands in the root of this repo:
```
pip install poetry
poetry install
poetry shell
mkdocs serve
```
Go to http://localhost:8000/
Note, images from imgur will not be loaded from the local server when
using `127.0.0.1:8000/` ensure to use `http://localhost:8000/` instead.
Note, if you want the social cards to be generated locally, you need to set the following environment variable:
```
export CARDS=true
```