diff --git a/layouts/partials/post-list.html b/layouts/partials/post-list.html
index 2b31d37..d519a50 100644
--- a/layouts/partials/post-list.html
+++ b/layouts/partials/post-list.html
@@ -5,7 +5,13 @@
- {{ .Title }} {{ .Description | markdownify }}
+ {{ if .Site.Params.useDescriptionAsTitle }}
+ {{ .Description }} {{ .Title | markdownify }}
+ {{ else }}
+ {{ .Title }} {{ .Description | markdownify }}
+ {{ end }}
+
+
{{ end }}
{{ end }}
diff --git a/static/css/style.css b/static/css/style.css
index 2d8c177..546d550 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -135,7 +135,7 @@ h2 {
}
.profile #wrapper {
- padding: 100px 40px 0px;
+ padding: 60px 40px 0px;
max-width: 600px;
margin: 0 auto;
}