diff --git a/layouts/_default/section.html b/layouts/_default/section.html
deleted file mode 100644
index dbeeb95..0000000
--- a/layouts/_default/section.html
+++ /dev/null
@@ -1,65 +0,0 @@
-{{ define "header" }}
-
-{{ end }}
-{{ define "main" }}
-{{- $paginator := .Paginate (where .Data.Pages.ByDate.Reverse "Type" "post") }}
-
-
-
- {{ with .Content }}
-
{{.}}
- {{ end }}
-
-
- {{- range $index, $element := $paginator.Pages -}}
- {{- $thisYear := $element.Date.Format "2006" }}
- {{- $lastElement := $index | add -1 | index $paginator.Pages }}
- {{ if or (eq $index 0) ( ne ($lastElement.Date.Format "2006") $thisYear ) }}
-
-
{{ $thisYear }}
-
- {{- end }}
-
-
- {{ $element.Date.Format "01-02" }}
-
-
-
- {{ .Title }}
-
-
-
- {{- end -}}
-
-
- {{ if or (.Paginator.HasPrev) (.Paginator.HasNext) }}
-
- {{ if .Paginator.HasPrev }}
- -
- ← {{ i18n "newerPosts" }}
-
- {{ end }}
- {{ if .Paginator.HasNext }}
- -
- {{ i18n "olderPosts" }} →
-
- {{ end }}
-
- {{ end }}
-
-
-
-{{ end }}
\ No newline at end of file