Small bugfixes
This commit is contained in:
parent
c69c14ea09
commit
d4321b5087
|
@ -106,6 +106,8 @@ func (b *Blog) Configure() {
|
||||||
markdown.Cache = cache
|
markdown.Cache = cache
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
b.registerErrors()
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetupHTTP initializes the Negroni middleware engine and registers routes.
|
// SetupHTTP initializes the Negroni middleware engine and registers routes.
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/kirsle/blog/core/internal/controllers/posts"
|
"github.com/kirsle/blog/core/internal/controllers/posts"
|
||||||
|
"github.com/kirsle/blog/core/internal/log"
|
||||||
"github.com/kirsle/blog/core/internal/markdown"
|
"github.com/kirsle/blog/core/internal/markdown"
|
||||||
"github.com/kirsle/blog/core/internal/render"
|
"github.com/kirsle/blog/core/internal/render"
|
||||||
"github.com/kirsle/blog/core/internal/responses"
|
"github.com/kirsle/blog/core/internal/responses"
|
||||||
|
@ -35,6 +36,7 @@ func (b *Blog) PageHandler(w http.ResponseWriter, r *http.Request) {
|
||||||
// See if it resolves as a blog entry.
|
// See if it resolves as a blog entry.
|
||||||
err = postctl.ViewPost(w, r, strings.TrimLeft(path, "/"))
|
err = postctl.ViewPost(w, r, strings.TrimLeft(path, "/"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Error("Post by fragment %s not found: %s", path, err)
|
||||||
responses.NotFound(w, r, "The page you were looking for was not found.")
|
responses.NotFound(w, r, "The page you were looking for was not found.")
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue
Block a user