diff --git a/layouts/blog/list.html b/layouts/blog/list.html
index d770fd6..3d3ae40 100644
--- a/layouts/blog/list.html
+++ b/layouts/blog/list.html
@@ -4,28 +4,24 @@
{{ define "main" }}
{{ range .Pages.ByDate.GroupByDate "2006" }}
-
{{ .Key }}
-
+ {{ .Key }}
+
{{ range .Pages }}
- {{ if or (not .Draft) (and .Draft (not hugo.IsProduction)) }}
- -
-
- {{ .Title }}
- {{ partial "development/draft_tag.html" . }}
-
-
-
-
+ {{ if or (not .Draft) (and .Draft (not hugo.IsProduction)) }}
+ -
+
+ {{ .Title }}
+ {{ partial "development/draft_tag.html" . }}
+
+
+
+
+ {{ end }}
{{ end }}
- {{ end }}
-
+
{{ end }}
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}
-
-{{ define "styles" }}
-
-{{ end }}