partirdezero/templates/partials/_footer.html

43 lines
No EOL
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% now "n" as month %}
<footer class="site-footer{% if month == '12' %} pdz-xmas{% endif %}">
<div class="footer-columns">
<div class="about">
<h5>À propos</h5>
<p>Développeur web fullstack, passionné par Python, Django et les expériences soignées. Ici, on apprend en s'amusant — sans négliger la rigueur pro.</p>
</div>
<div class="footer-link">
<h5>Navigation</h5>
<ul>
<li><a href="/">Accueil</a></li>
<li><a href="{% url 'courses:list' %}">Cours</a></li>
<li><a href="#">Tutoriels</a></li>
<li><a href="#">Billets</a></li>
</ul>
</div>
<div class="footer-link">
<h5>Suivre</h5>
<ul class="social">
{% if settings.youtube_url %}
<li><a href="{{ settings.youtube_url }}" target="_blank" rel="noopener"><i class="fa-brands fa-youtube"></i> YouTube</a></li>
{% endif %}
{% if settings.github_url %}
<li><a href="https://github.com/" target="_blank" rel="noopener"><i class="fa-brands fa-github"></i> GitHub</a></li>
{% endif %}
{% if settings.twitter_url %}
<li><a href="https://x.com/" target="_blank" rel="noopener"><i class="fa-brands fa-x-twitter"></i> X</a></li>
{% endif %}
{% if settings.contact_email %}
<li><a href="mailto:contact@exemple.com"><i class="fa-solid fa-envelope"></i> Email</a></li>
{% endif %}
</ul>
</div>
</div>
<div class="footer-legal">
<span>Partir de Zero ©2024 - {% now "Y" %}</span>
<span>v{{ SITE_VERSION }}</span>
<span>Site fièrement créer par <a href="https://av-interactive.be" target="_blank" rel="noopener">AV Interactive</a></span>
{% if month == '12' %}
<span class="pdz-holiday-greeting" aria-label="Joyeuses fêtes">Joyeuses fêtes <span class="pdz-festive-emoji" role="img" aria-hidden="true">🎄</span></span>
{% endif %}
</div>
</footer>