Add clock time
This commit is contained in:
parent
b16aa5b4f2
commit
0a06eb57c4
2 changed files with 5 additions and 1 deletions
|
@ -12,7 +12,8 @@ geometry:
|
|||
...
|
||||
|
||||
# Buongiorno Aldo!
|
||||
Oggi è il {{day}}.{{month}}.{{year}}.
|
||||
|
||||
Sono le ore **{{kitchen}}** del **{{day}}.{{month}}.{{year}}**.
|
||||
|
||||
# Situazione meteo
|
||||
|
||||
|
|
|
@ -15,6 +15,9 @@ import (
|
|||
)
|
||||
|
||||
var funcmap = template.FuncMap{
|
||||
"kitchen": func() string {
|
||||
return time.Now().Format(time.Kitchen)
|
||||
},
|
||||
"day": func() int {
|
||||
_, _, day := time.Now().Date()
|
||||
return day
|
||||
|
|
Loading…
Reference in a new issue