No description
  • Python 32.8%
  • HTML 24.1%
  • SCSS 22.1%
  • CSS 12.7%
  • Jinja 3.3%
  • Other 5%
Find a file
ywh d32934a059
All checks were successful
Create and publish website / build (push) Successful in 1m17s
Create and publish website / deploy-testing (push) Has been skipped
Create and publish website / deploy-production (push) Successful in 2m13s
updated version
2026-03-26 20:17:52 +01:00
.forgejo/workflows workflows! 2026-03-08 18:12:54 +01:00
content updated info 2026-03-26 20:15:30 +01:00
dev-utils upload initial version 2026-03-08 18:07:37 +01:00
plugins heh 2026-03-09 13:59:54 +01:00
talks upload initial version 2026-03-08 18:07:37 +01:00
themes upload initial version 2026-03-08 18:07:37 +01:00
.gitignore forgot .gitignore bweh :D 2026-03-09 13:46:54 +01:00
changelog-26.md updated version 2026-03-26 20:17:52 +01:00
hackmeeting.json updated info 2026-03-26 20:15:30 +01:00
Makefile upload initial version 2026-03-08 18:07:37 +01:00
new-year.md aggiornamenti new-year 2026-03-08 18:13:04 +01:00
pelicanconf.py upload initial version 2026-03-08 18:07:37 +01:00
publishconf.py upload initial version 2026-03-08 18:07:37 +01:00
pyproject.toml upload initial version 2026-03-08 18:07:37 +01:00
README.md upload initial version 2026-03-08 18:07:37 +01:00
requirements.txt upload initial version 2026-03-08 18:07:37 +01:00

Hackmeeting 2026

Sources for Italian Hackmeeting 0x1D (2026) website.

Il sito viene gestito - in massima parte - dalla commissione comunicazione di hackmeeting. Se vuoi metterti in contatto con loro, scrivi nella mailing list per coordinarti con loro. Se vuoi provare lo stesso a metterci le mani, fai pure... noi ti abbiamo avvertito!

Schema di massima

Questo repository git viene automaticamente "sincronizzato" (continous deployment) e il risultato va a finire su https://hackmeeting.org/hackit26/

Per fare modifiche al sito:

  • fatti un account personale su git.lattuga.net
  • fai una modifica al sito
  • apri una pull request
  • quando la pull request viene approvata, e il tutto finisce in "main", la modifica è online

HowTo

So you want to contribute, nice! You'll need a UNIX (Linux, BSD...) system and some proficiency with the terminal and with Git-based workflows.

Setup your development environment

Clone this repository on your pc

git clone https://git.lattuga.net/hackit/sito-hackit-26.git

Install mkvirtualenv (apt install virtualenvwrapper, on Debian-based systems); alternatively, use your favorite python virtual environment system.

mkvirtualenv -p `which python3` hackmeeting-website

Launch the project (inside your virtual environment):

pip install -r requirements.txt
make all serve
firefox http://localhost:8000/

Also, make help is your friend.

For debug, make DEBUG=1

Change content

Most content is in content/pages/. Just go there, find the relevant file, change it.

Now, make all serve, see the result in your browser

repeat until you like it

Commit and push

usual git workflow

Griglia dei seminari

I talk compaiono in questo repository come cartelle all'interno della cartella talks/. Tuttavia, la cosa corretta da fare NON è modificare i contenuti direttamente lì, ma modificare un calendario nextcloud da cui queste informazioni provengono. Infatti il calendario viene gestito dalla commissione griglia: coordinati con loro se vuoi toccare questa parte del sito.

Altre modifiche al sito

Il sito è un'istanza di pelican, più alcuni plugin custom:

  • langmenu, per avere un menu che punta alle versioni localizzate della pagina
  • talks, per gestire i talk in modo "speciale" per hackmeeting

Puoi quindi riferirti alla documentazione di pelican per fare delle prove e capire come modificare il sito.