diff --git a/layouts/partials/blog_single.html b/layouts/partials/blog_single.html
index a7abe69..0bf5ace 100644
--- a/layouts/partials/blog_single.html
+++ b/layouts/partials/blog_single.html
@@ -46,9 +46,9 @@
{{ partial "content" . }}
-
{{ if .Site.Params.share }}
+
{{ if .Site.Params.share_on_fb | default true }}
@@ -65,30 +65,32 @@
{{ end }}
{{ if .Site.Params.posts_navigation }}
-
- {{ if .PrevInSection }}
-
- {{ end }}
-
- {{ if .NextInSection }}
-
- {{ end }}
-
- {{ end }}
+
+ {{ if .PrevInSection }}
+
+ {{ end }}
+
+ {{ if .NextInSection }}
+
+ {{ end }}
+
+ {{ end }}
{{ if .Site.Params.disqusShortname }}
+
{{ end }}
{{ if .Site.Params.issoHost }}
+
{{ end }}
diff --git a/layouts/partials/css/main.css b/layouts/partials/css/main.css
index 01f8158..a4d93c3 100644
--- a/layouts/partials/css/main.css
+++ b/layouts/partials/css/main.css
@@ -157,7 +157,11 @@ div.header .content {
align-items: center;
}
div.header .container .logo {
+ {{ if .Site.Params.enlarged }}
+ max-width: 200px;
+ {{ else }}
max-width: 100px;
+ {{ end }}
margin-left: -2em;
}
div.header .name {
@@ -271,7 +275,11 @@ div.main .container {
}
div.main .content {
color: #111111;
+ {{ if .Site.Params.enlarged }}
+ font-size: 17px;
+ {{ else }}
font-size: 16px;
+ {{ end }}
}
div.main .content .title-container {
display: -webkit-flex;
@@ -285,7 +293,10 @@ div.main .content .title-container {
justify-content: space-between;
}
div.main .content .posts {
+ {{ $nbPosts := len (where .Data.Pages "Params.best" true) }}
+ {{ if gt $nbPosts 0 }}
margin-bottom: 4em;
+ {{ end }}
}
div.main .content .page-heading {
font-size: 20px;
diff --git a/layouts/partials/css/min600px.css b/layouts/partials/css/min600px.css
index f4b5487..0c34912 100644
--- a/layouts/partials/css/min600px.css
+++ b/layouts/partials/css/min600px.css
@@ -11,11 +11,19 @@ section {
padding: 0 16px;
margin-left: 100px;
margin-right: 100px;
+{{ if .Site.Params.enlarged }}
+max-width: 825px;
+{{ else }}
max-width: 750px;
+{{ end }}
}
div.column {
padding: 0 16px;
+{{ if .Site.Params.enlarged }}
+max-width: 825px;
+{{ else }}
max-width: 750px;
+{{ end }}
}
div.header {
background-color: transparent;
@@ -30,8 +38,8 @@ div.header .container .logo {
margin: 0;
}
div.header-home .container .logo {
-max-width: 180px;
-margin-left: 20px;
+max-width: 216px;
+margin-left: 24px;
}
div.header-home .name-home {
padding-top: 30px;
@@ -116,7 +124,7 @@ padding-top: 60px;
padding-bottom: 60px;
}
div.footer {
-padding-top: 30px;
+padding-top: 60px;
padding-bottom: 60px;
}
div.main {
@@ -130,10 +138,6 @@ padding-left: 1.5em;
div.main .container .content .post-item .meta {
display: block;
}
-div.main.post {
-padding-top: 60px;
-padding-bottom: 60px;
-}
div.main .content .markdown blockquote {
padding-right: 5rem;
padding-left: 1.25rem;