diff options
author | sptaule <lecas83@gmail.com> | 2022-01-29 14:42:09 +0100 |
---|---|---|
committer | sptaule <lecas83@gmail.com> | 2022-01-29 14:42:09 +0100 |
commit | e6f8f43b6ca5ff00d33b3a539e67eb2255fa1dd0 (patch) | |
tree | 1c08c3482e3ac79de1b040d77e3ca3d4f37b8fad /templates/macros.html | |
parent | e958d4a1d06878100170cd96ce548966e3d5222a (diff) | |
download | garagehq.deuxfleurs.fr-e6f8f43b6ca5ff00d33b3a539e67eb2255fa1dd0.tar.gz garagehq.deuxfleurs.fr-e6f8f43b6ca5ff00d33b3a539e67eb2255fa1dd0.zip |
Improve responsive, icons, refactor search, update readme
Diffstat (limited to 'templates/macros.html')
-rwxr-xr-x | templates/macros.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/macros.html b/templates/macros.html index 9fab136..dc65140 100755 --- a/templates/macros.html +++ b/templates/macros.html @@ -2,24 +2,24 @@ <p class="flex items-center justify-center space-x-2"> {% if social_config.git %} <a href="{{ social_config.git }}" target="_blank"> - <span class="icon is-large" title="Git"> - <i class="fab fa-git fa-lg text-garage-gray h-8 w-8 bg-white hover:bg-garage-orange hover:text-white rounded-full shadow flex items-center justify-center"></i> + <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=""> </span> </a> {% endif %} {% if social_config.email %} <a href="mailto:{{ social_config.email }}" target="_blank"> - <span class="icon is-large" title="Email"> - <i class="far fa-envelope fa-lg text-garage-gray h-8 w-8 bg-white hover:bg-garage-orange hover:text-white rounded-full shadow flex items-center justify-center"></i> + <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=""> </span> </a> {% endif %} {% if config.generate_feed %} <a href="{{ config.base_url }}/{{ config.feed_filename }}" target="_blank"> - <span class="icon is-large" title="RSS Feed"> - <i class="fas fa-rss fa-lg text-garage-gray h-8 w-8 bg-white hover:bg-garage-orange hover:text-white rounded-full shadow flex items-center justify-center"></i> + <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=""> </span> </a> {% endif %} |