changed some shit also yes!!!

This commit is contained in:
hexlocation 2025-01-08 17:55:58 +01:00
parent 855521e4e5
commit 6f0ce47bd8
Signed by: hex
GPG key ID: A19EFFAAF8C00FCF
6 changed files with 14 additions and 12 deletions

View file

@ -1,8 +1,11 @@
{% macro service(title, description, href, img, h="16") %}
{% macro service(title, description, href, img, h="16", available=true) %}
<div class="service-container">
<p class="service-title">
<img class="service-icon" src="{{img}}" height="{{h}}" >
<a href="{{href}}" class="service-link">{{title}}</a>
{% if not available %}
<span style="color:red;font-size: 10px;">unavailable</span>
{% endif %}
</p>
<hr />
<p class="service-description">{{description}}</p>