diff options
Diffstat (limited to 'templates/macros.html')
-rwxr-xr-x | templates/macros.html | 6 |
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 %} |