Skip to content

Commit 2abbc79

Browse files
ErikBjare0xbrayo
authored andcommitted
fix: fixed footer cols and improved latest blog post list
1 parent a5ef21b commit 2abbc79

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

_includes/footer.pug

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ html
33
body
44
footer.site-footer
55
.wrapper
6-
h4.footer-heading(style='margin-bottom: 0.2em') {{ site.title_short }}
7-
p
8-
i {{ site.description }}
96
.footer-col-wrapper
107
.footer-col.footer-col-3
8+
h4.footer-heading(style='margin-bottom: 0.2em') {{ site.title_short }}
9+
p
10+
i {{ site.description }}
1111
ul.social-media-list
1212
| {% if site.github_username %}
1313
li {% include icon-github.html username=site.github_username %}

_includes/latest-posts.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- list latest jekyll posts -->
22
{% assign posts = site.posts | limit:3 %}
3-
<ul>
3+
<ul style="list-style-type: none; padding: 0; margin: 0;"
44
{% for post in posts %}
55
<li>
6-
{{ post.date | date_to_string }} -
6+
{{ post.date | date: "%Y-%m-%d" }}
77
<a href="{{ post.url }}">{{ post.title }}</a>
88
</li>
99
{% endfor %}

0 commit comments

Comments
 (0)