Skip to content

Commit 9b3b8ce

Browse files
Add fontawesome icons
1 parent 22d90ed commit 9b3b8ce

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

_includes/head.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
{%- if jekyll.environment == 'production' and site.google_analytics -%}
1010
{%- include google-analytics.html -%}
1111
{%- endif -%}
12+
<script src="https://kit.fontawesome.com/ea8bca3c5d.js" crossorigin="anonymous"></script>
1213
</head>

_layouts/post.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
<header class="post-header">
77
<h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}</h1>
88
<p class="post-meta">
9-
<div class="post-dt" style="width:60%; float:left">
9+
<div class="post-dt" style="width:60%; float:left" align-items: center;>
10+
<i class="fa-solid fa-calendar"></i>
11+
&nbsp;
1012
<time class="dt-published" datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
1113
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
1214
{{ page.date | date: date_format }}
@@ -18,7 +20,9 @@ <h1 class="post-title p-name" itemprop="name headline">{{ page.title | escape }}
1820

1921

2022
<div class="post-categories" style="width:40%; float:right">
21-
<div class="post-categories-list" style="display: flex; justify-content: flex-end">
23+
<div class="post-categories-list" style="display: flex; justify-content: flex-end; align-items: center;">
24+
<i class="fa-solid fa-tags"></i>
25+
&nbsp;
2226
{% if post %}
2327
{% assign categories = post.categories %}
2428
{% else %}

0 commit comments

Comments
 (0)