Skip to content

Commit 75b6f7f

Browse files
committed
2025-01-20
1 parent 57f997a commit 75b6f7f

5 files changed

Lines changed: 5 additions & 13 deletions

File tree

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ minima:
4747
skin: auto
4848
date_format: '%b %-d, %Y'
4949
social_links:
50-
- platform: gitlab # same as SVG filename.
50+
- platform: hugo # same as SVG filename.
5151
user_url: 'https://1000sher.in' # URL of profile page.
5252
title: 1000Sher - My Poetry Project # Optional. Text displayed on hovering over link.
53-
- platform: github
53+
- platform: gitlab
5454
user_url: 'https://github.com/codeRSH'
5555
title: My Repos
5656

_includes/social-icons/hugo.svg

Lines changed: 1 addition & 6 deletions
Loading

_includes/social-icons/older-hugo.svg

Lines changed: 0 additions & 3 deletions
This file was deleted.

_layouts/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ <h1 class="page-heading">{{ page.title }}</h1>
88
{%- endif -%}
99
{{ content }}
1010
{% if site.paginate %}
11-
{% assign posts = paginator.posts %}
11+
{% assign posts = paginator.posts | where_exp: 'post', 'post.date <= site.time' %}
1212
{% else %}
13-
{% assign posts = site.posts %}
13+
{% assign posts = site.posts | where_exp: 'post', 'post.date <= site.time' %}
1414
{% endif %}
1515

1616
{%- if posts.size > 0 -%}

0 commit comments

Comments
 (0)