Source code for www.gurutech.it, built with Pelican and automatically deployed to GitHub Pages.
-
Create a new branch:
git checkout -b add-new-article
-
Add your content file in
content/(Markdown or reStructuredText):# Example: content/my-article.mdTitle: My Article Title Date: 2026-01-05 Category: Blog Your article content goes here.
-
Preview locally (optional):
poetry install make devserver # Open http://localhost:8000 -
Commit and push:
git add content/my-article.md git commit -m "Add new article" git push origin add-new-article -
Open a pull request on GitHub. Once merged to
main, the site is automatically deployed.