diff options
Diffstat (limited to 'cmd/web/handlers')
| -rw-r--r-- | cmd/web/handlers/blog.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/web/handlers/blog.go b/cmd/web/handlers/blog.go index 07ab361..bd2d97f 100644 --- a/cmd/web/handlers/blog.go +++ b/cmd/web/handlers/blog.go @@ -18,6 +18,8 @@ type blogContext struct { } func (ctx *blogContext) index(w http.ResponseWriter, r *http.Request) { + ctx.Rows = []models.Post{} + if r.URL.Path != "/" { http.NotFound(w, r) return |
