Merge branch 'main' of git.phc.dm.unipi.it:phc/website

main-old
Antonio De Lucreziis 3 years ago
commit ce2ec3e5ad

@ -3,8 +3,8 @@ MODE=development
HOST=localhost:8000
# Separate services
GIT_URL=https://git.example.org
FORUM_URL=https://forum.example.org
GIT_URL=https://git.phc.dm.unipi.it
CHAT_URL=https://chat.phc.dm.unipi.it
# Other
EMAIL=mail@example.org

@ -39,4 +39,4 @@ $ find . -type f -name '*.go' | entr -r go run .
Rappresentano link ad altri servizi forniti, è comodo impostarli così in modo da poter anche provare tutto insieme in locale su varie porte (e poi in produzione i vari url diventano link a sotto-domini del sito principale).
Per ora ci sono solo `GIT_URL` e `FORUM_URL`.
Per ora ci sono solo `GIT_URL` e `CHAT_URL`.

@ -13,7 +13,7 @@ var Mode string
var Host string
var GitUrl string
var ForumUrl string
var ChatUrl string
var Email string
func loadEnv(target *string, name, defaultValue string) {
@ -34,7 +34,7 @@ func Load() {
loadEnv(&Mode, "MODE", "production")
loadEnv(&Host, "HOST", "localhost:8080")
loadEnv(&GitUrl, "GIT_URL", "https://git.example.org")
loadEnv(&ForumUrl, "FORUM_URL", "https://forum.example.org")
loadEnv(&ChatUrl, "CHAT_URL", "https://chat.example.org")
loadEnv(&Email, "EMAIL", "mail@example.org")
}
@ -43,7 +43,7 @@ func Object() util.H {
"Mode": Mode,
"Host": Host,
"GitUrl": GitUrl,
"ForumUrl": ForumUrl,
"ChatUrl": ChatUrl,
"Email": Email,
}
}

@ -51,7 +51,7 @@
</div>
<div class="card">
<div class="title">
<a href="https://github.com/BachoSeven/dotfiles/blob/master/.local/bin/scripts/printa4">Stampare da terminale in dipartimento</a>
<a href="https://git.phc.dm.unipi.it/phc/dm-scripts/src/branch/main/printa4">Script per stampare in dipartimento direttamente dal tuo PC</a>
<i class="fas fa-external-link-alt"></i>
</div>
<div class="description">

@ -26,7 +26,7 @@
<a class="nav-element" href="{{ .Config.GitUrl }}">Gitea</a>
</div>
<div class="nav-item">
<a class="nav-element" href="{{ .Config.ForumUrl }}">Zulip</a>
<a class="nav-element" href="{{ .Config.ChatUrl }}">Zulip</a>
</div>
<div class="nav-item">
<a class="nav-element" href="/seminari">Seminari</a>

Loading…
Cancel
Save