aboutsummaryrefslogtreecommitdiff
path: root/templates/macros.html
diff options
context:
space:
mode:
authorAlex <alex@adnab.me>2022-04-08 11:39:58 +0200
committerAlex <alex@adnab.me>2022-04-08 11:39:58 +0200
commit39dd3a8183226495a6c43e3142a089c0e502aed5 (patch)
treede4855b8b91969ffca343715c68a91f7b5b26601 /templates/macros.html
parent36f3a1783c915c822e407005115a32889f4a3ccb (diff)
parentd78e41c7314fe68d13e5772522fd75baae24802f (diff)
downloadgaragehq.deuxfleurs.fr-39dd3a8183226495a6c43e3142a089c0e502aed5.tar.gz
garagehq.deuxfleurs.fr-39dd3a8183226495a6c43e3142a089c0e502aed5.zip
Merge pull request 'html width attributes have no width' (#5) from pic-width into master
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garagehq.deuxfleurs.fr/pulls/5
Diffstat (limited to 'templates/macros.html')
-rwxr-xr-xtemplates/macros.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/macros.html b/templates/macros.html
index dc65140..493bfb4 100755
--- a/templates/macros.html
+++ b/templates/macros.html
@@ -3,7 +3,7 @@
{% if social_config.git %}
<a href="{{ social_config.git }}" target="_blank">
<span class="h-10 w-10 bg-white hover:shadow-xl rounded-full shadow flex items-center justify-center" title="Git">
- <img src="{{get_url(path='icons/git.svg')}}" width="24px" alt="">
+ <img src="{{get_url(path='icons/git.svg')}}" width="24" alt="">
</span>
</a>
{% endif %}
@@ -11,7 +11,7 @@
{% if social_config.email %}
<a href="mailto:{{ social_config.email }}" target="_blank">
<span class="h-10 w-10 bg-white hover:shadow-xl rounded-full shadow flex items-center justify-center" title="Contact">
- <img src="{{get_url(path='icons/contact.svg')}}" width="24px" alt="">
+ <img src="{{get_url(path='icons/contact.svg')}}" width="24" alt="">
</span>
</a>
{% endif %}
@@ -19,7 +19,7 @@
{% if config.generate_feed %}
<a href="{{ config.base_url }}/{{ config.feed_filename }}" target="_blank">
<span class="h-10 w-10 bg-white hover:shadow-xl rounded-full shadow flex items-center justify-center" title="RSS Feed">
- <img src="{{get_url(path='icons/rss.svg')}}" width="24px" alt="">
+ <img src="{{get_url(path='icons/rss.svg')}}" width="24" alt="">
</span>
</a>
{% endif %}