diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 21:30:32 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-22 21:30:32 +0300 |
commit | 15a3494971413fabea8fe5746e84a4b864dd5ddf (patch) | |
tree | ab5f50e438929483e84f5f2487caad6962893080 | |
parent | bootstrap: boost font to 16px (diff) | |
download | jekyll-theme-15a3494971413fabea8fe5746e84a4b864dd5ddf.tar.gz jekyll-theme-15a3494971413fabea8fe5746e84a4b864dd5ddf.zip |
remove <hr> tags where unnecessary
I really stopped liking them, too much vertical whitespace.
-rw-r--r-- | _includes/categories/all.html | 2 | ||||
-rw-r--r-- | _includes/posts/feed.html | 1 | ||||
-rw-r--r-- | _layouts/page.html | 1 | ||||
-rw-r--r-- | _layouts/post.html | 1 |
4 files changed, 0 insertions, 5 deletions
diff --git a/_includes/categories/all.html b/_includes/categories/all.html index a988a3f..e21b3f6 100644 --- a/_includes/categories/all.html +++ b/_includes/categories/all.html @@ -4,7 +4,6 @@ {% else %} {% for category in site.categories %} <h1><a class="category" href="{{ '/' | relative_url }}{{ category[0] | slugify: 'pretty' }}/">{{ category[0] }}</a></h1> - <hr/> <ul> {% for post in category[1] %} <li><a href="{{ post.url | relative_url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li> @@ -14,7 +13,6 @@ {% assign uncategorized = site.posts | where_exp: "post","post.categories.size == 0" %} {% if uncategorized.size != 0 %} <h1>Other</h1> - <hr/> <ul> {% for post in uncategorized %} <li><a href="{{ post.url | relative_url }}">{{ post.date | date: "%Y-%m-%d" }} — {{ post.title }}</a></li> diff --git a/_includes/posts/feed.html b/_includes/posts/feed.html index c123ceb..b273b5a 100644 --- a/_includes/posts/feed.html +++ b/_includes/posts/feed.html @@ -15,7 +15,6 @@ </div> </div> {{ post.excerpt | markdownify }} - <hr/> {% endfor %} <div class="text-center"> {% include posts/paginator.html %} diff --git a/_layouts/page.html b/_layouts/page.html index 090100f..11c37a1 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,5 +2,4 @@ layout: default --- <h1>{{ page.title }}</h1> -<hr/> {{ content }} diff --git a/_layouts/post.html b/_layouts/post.html index 133a95b..740da65 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -13,4 +13,3 @@ layout: default </div> </div> {{ content }} -<hr/> |