diff --git a/_includes/post-nav.html b/_includes/post-nav.html
index d90967a..f188149 100644
--- a/_includes/post-nav.html
+++ b/_includes/post-nav.html
@@ -1,13 +1,13 @@
{% if page.previous %}
-
{% include svg.html icon="chevron-back" class="inline-icon" %}Previous
+
{%- include svg.html icon="chevron-back" class="inline-icon small" -%} Previous
{{ page.previous.title | escape }}
{% endif %}
{% if page.next %}
-
Next{% include svg.html icon="chevron-forward" class="inline-icon" %}
+
Next{%- include svg.html icon="chevron-forward" class="inline-icon small" -%}
{{ page.next.title | escape }}
{% endif %}
diff --git a/_pages/about.md b/_pages/about.md
index 5b5232c..b7469fd 100644
--- a/_pages/about.md
+++ b/_pages/about.md
@@ -35,7 +35,7 @@ Find me on Twitter:
- {% include svg.html icon="twitter" params="aria-hidden='true'" %} @{{ site.twitter.username }}
+ {%- include svg.html icon="twitter" params="aria-hidden='true'" -%} @{{ site.twitter.username }}
@@ -43,6 +43,6 @@ Read my new posts via Atom / RSS:
- {% include svg.html icon="rss" params="aria-hidden='true'" %} Subscribe to our feed
+ {%- include svg.html icon="rss" params="aria-hidden='true'" -%} Subscribe to our feed
\ No newline at end of file
diff --git a/_posts/2022-02-01-svg-icons.md b/_posts/2022-02-01-svg-icons.md
index 86db7bd..ba6d72d 100644
--- a/_posts/2022-02-01-svg-icons.md
+++ b/_posts/2022-02-01-svg-icons.md
@@ -15,13 +15,13 @@ Here's the set of SVG icons easily available on Papicu:
{% include svg.html show_all="true" %}
-
How to use them {% include svg.html icon="help" class="inline-icon" %}
+
How to use them {%- include svg.html icon="help" class="inline-icon" -%}
Basic use cases need just this one line of `liquid`:
{% raw %}
```liquid
-{% include svg.html icon="NAME" %}
+{%- include svg.html icon="NAME" -%}
```
{% endraw %}
@@ -33,4 +33,4 @@ For more advanced usage, look up the source code of this demo site.
All our icons are [Ionicons](https://ionic.io/ionicons).
-
Thanks, Ionic team {% include svg.html icon="star" class="inline-icon" %}
\ No newline at end of file
+
Thanks, Ionic team {%- include svg.html icon="star" class="inline-icon" -%}
\ No newline at end of file