diff --git a/_layouts/post.html b/_layouts/post.html index 18f24a9..b28e1cd 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,7 +1,12 @@ --- layout: default --- -

{{ page.title }}

- -{{ content }} +
+

{{ page.title }}

+ + +
+ {{ content }} +
+
diff --git a/_layouts/post_klipse.html b/_layouts/post_klipse.html index 3fe0aea..f309dde 100644 --- a/_layouts/post_klipse.html +++ b/_layouts/post_klipse.html @@ -5,7 +5,6 @@ - diff --git a/_sass/blogroll.scss b/_sass/blogroll.scss index f0c520c..271cf90 100644 --- a/_sass/blogroll.scss +++ b/_sass/blogroll.scss @@ -1,3 +1,6 @@ -h2.blogroll-title > a { - text-decoration: none; +h2.blogroll-title { + a { + text-decoration: none; + } + } \ No newline at end of file diff --git a/_sass/main.scss b/_sass/main.scss index 7c566b3..d5f207a 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -69,6 +69,11 @@ main :not(:is(h1,h2,h3,h4,h5,h6)) { line-height: 1.3; } +/* increase line-height for everything except headings */ +main :is(p,h1,h2,h3,h4,h5,h6) { + margin-block-end: 0.0em; + } + a { text-decoration: underline; color: #222; diff --git a/blog.html b/blog.html index 65e5a57..de5fd26 100644 --- a/blog.html +++ b/blog.html @@ -4,9 +4,10 @@ title: Blog permalink: /blog/ --- {% for post in site.posts %} -
-

{{ post.title }}

- {{ post.excerpt }} -
+
+

{{ post.title }}

+ + {{ post.excerpt | remove: '

' | remove: '

' }}
+
{% endfor %}