diff --git a/_views/storia.html b/_views/storia.html index 3ae5641..0b88ab1 100644 --- a/_views/storia.html +++ b/_views/storia.html @@ -16,16 +16,22 @@ {{ if eq .Type "simple" }}
+ {{ if .Icon }} + + {{ end }} {{ .Title }}
{{ .Date }}
+
+ {{ .Description }} +
{{ end }} {{ if eq .Type "entry-macchinista" }}
- Ingresso di + Ingresso di {{ .FullName }}
{{ .Date }}
@@ -34,8 +40,8 @@ {{ if eq .Type "exit-macchinista" }}
- Uscita di + Uscita di {{ .FullName }}
{{ .Date }}
diff --git a/storia.go b/storia.go index da1d7d4..7c13701 100644 --- a/storia.go +++ b/storia.go @@ -30,6 +30,9 @@ type GenericEvent struct { // Se il tipo è "spacer" questa è la sua dimensione Size int `json:"size"` + + // Icona opzionale per il tipo "simple" + Icon string `json:"icon"` } type Macchinista struct { diff --git a/storia.json b/storia.json index b873da7..f02a196 100644 --- a/storia.json +++ b/storia.json @@ -32,13 +32,14 @@ { "type": "simple", "title": "Nuovo sito del PHC", - "description": "TBA", - "date": "2022/??" + "description": "Featuring: ricerca utenti, dark mode, nuovo logo e molto altro!", "date": "2022/09", + "icon": "fa-solid fa-sitemap" }, { "type": "simple", "title": "Apertura del PHC", - "date": "1994" + "date": "1994", + "icon": "fa-solid fa-flag-checkered" } ] }