Niente più blog in quanto ora c'è la sezione News

main-old
Antonio De Lucreziis 3 years ago
parent 106531603c
commit bfb5a61e14

@ -10,8 +10,6 @@ Per clonare il progetto usare
$ git clone https://github.com/phc-dm/phc-server $ git clone https://github.com/phc-dm/phc-server
``` ```
<!-- L'opzione `--recursive` serve a clonare anche il sottomodule relativo al blog del sito, si può anche omettere però non sarà disponibile la visualizzazione del blog in fase di development. -->
## Development ## Development
Copiare il file `.env.dev` in `.env` per dire al server di lavorare in modalità di development e su quale indirizzo servire il sito, poi avviare il server. Copiare il file `.env.dev` in `.env` per dire al server di lavorare in modalità di development e su quale indirizzo servire il sito, poi avviare il server.

@ -197,7 +197,7 @@ func (registry *ArticleRenderer) LoadAll() ([]*Article, error) {
return articles, nil return articles, nil
} }
func NewArticleRegistry(rootPath string) *ArticleRenderer { func NewArticleRenderer(rootPath string) *ArticleRenderer {
return &ArticleRenderer{ return &ArticleRenderer{
rootPath, rootPath,
} }

@ -23,11 +23,10 @@ func main() {
// Static content // Static content
r.Handle("/public/*", http.StripPrefix("/public", http.FileServer(http.Dir("./public")))) r.Handle("/public/*", http.StripPrefix("/public", http.FileServer(http.Dir("./public"))))
r.Handle("/blog/*", http.StripPrefix("/blog", http.FileServer(http.Dir("./blog/public"))))
// Templates & Renderer // Templates & Renderer
renderer := NewTemplateRenderer("base.html") renderer := NewTemplateRenderer("base.html")
newsArticlesRegistry := NewArticleRegistry("./news") newsArticlesRegistry := NewArticleRenderer("./news")
// Routes // Routes
r.Get("/", func(w http.ResponseWriter, r *http.Request) { r.Get("/", func(w http.ResponseWriter, r *http.Request) {

Loading…
Cancel
Save