diff --git a/layouts/_default/list.html b/layouts/_default/list.html
index 92090ef..51b1fb9 100644
--- a/layouts/_default/list.html
+++ b/layouts/_default/list.html
@@ -1,15 +1,12 @@
{{ define "content" }}
-{{ $data := .Data }}
-
-
- {{ $data.Plural | humanize }} ยท {{ .Title }} -
- {{ range (.Paginate .Pages).Pages }}
-
- {{ .Title }}
-
- {{ .Date.Format "January 2, 2006" }}
-
-
- {{ end }}
- {{ partial "paginator.html" . }}
+
+
+
+
+ {{ partial "user-profile.html" . }}
+
+ {{ partial "posts.html" .}}
+
+
{{end }}
\ No newline at end of file
diff --git a/layouts/index.html b/layouts/index.html
index 38ada32..1ea97f7 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -1,7 +1,3 @@
{{ define "content" }}
-{{ if eq .Site.Params.home_mode "post" }}
-{{ partial "post.html" . }}
-{{ else }}
{{ partial "home.html" . }}
-{{ end }}
{{ end }}
\ No newline at end of file
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 0a96116..97ffdde 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -22,4 +22,6 @@
-
\ No newline at end of file
+
+
+{{ partial "script.html" }}
\ No newline at end of file
diff --git a/layouts/partials/home.html b/layouts/partials/home.html
index cb52580..b1f3ad9 100644
--- a/layouts/partials/home.html
+++ b/layouts/partials/home.html
@@ -1,86 +1,10 @@
-{{ $mainSections := .Site.Params.mainSections | default (slice "post") }}
-{{ $section := where .Site.RegularPages "Section" "in" $mainSections }}
-{{ $section_count := len $section }}
-{{ $n_posts := $.Param "recent_posts_number" | default 6 }}