Skip to content

Commit 98b209a

Browse files
committed
feat: add events, blog, multi-lang, more homepage sections and routing
1 parent 716afcf commit 98b209a

39 files changed

+1211
-182
lines changed

package-lock.json

Lines changed: 180 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"@angular/forms": "^21.2.0",
1818
"@angular/platform-browser": "^21.2.0",
1919
"@angular/router": "^21.2.0",
20+
"@jsverse/transloco": "8.2.1",
2021
"rxjs": "~7.8.0",
2122
"tslib": "^2.3.0"
2223
},

public/data/blog-posts.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"id": 1,
4+
"title": "Benvenuti nel blog di Python Catania",
5+
"titleEn": "Welcome to the Python Catania blog",
6+
"date": "2025-03-01",
7+
"author": "Python Catania",
8+
"content": "Siamo felici di annunciare il lancio del nostro nuovo blog dove condivideremo articoli tecnici, novità e aggiornamenti dalla community.",
9+
"contentEn": "We are happy to announce the launch of our new blog where we will share technical articles, news and updates from the community.",
10+
"url": "https://github.com/PythonCatania"
11+
},
12+
{
13+
"id": 2,
14+
"title": "Python 3.13: Le novità più importanti",
15+
"titleEn": "Python 3.13: The most important new features",
16+
"date": "2025-01-15",
17+
"author": "Salvatore Rapisarda",
18+
"content": "Una panoramica delle funzionalità più interessanti introdotte in Python 3.13, dal nuovo interprete interattivo ai miglioramenti del GIL.",
19+
"contentEn": "An overview of the most interesting features introduced in Python 3.13, from the new interactive interpreter to GIL improvements.",
20+
"url": "https://github.com/PythonCatania"
21+
},
22+
{
23+
"id": 3,
24+
"title": "FastAPI in produzione: consigli pratici",
25+
"titleEn": "FastAPI in production: practical tips",
26+
"date": "2024-11-20",
27+
"author": "Matteo Jacopo Schembri",
28+
"content": "Come strutturare e deployare un'applicazione FastAPI in produzione con Docker, e le best practice che abbiamo imparato sul campo.",
29+
"contentEn": "How to structure and deploy a FastAPI application in production with Docker, and the best practices we have learned in the field.",
30+
"url": "https://github.com/PythonCatania"
31+
}
32+
]

0 commit comments

Comments
 (0)