content update
This commit is contained in:
parent
cbd748459c
commit
dee2d33a36
12 changed files with 144 additions and 94 deletions
|
@ -1,24 +1,25 @@
|
|||
{% load navigation_tags %}
|
||||
|
||||
<footer>
|
||||
<p>Hello 👋</p>
|
||||
<footer class="flex flex-col items-center w-full max-w-7xl px-0 md:px-4 lg:px-8">
|
||||
<p>Created in <span class="emoji">🇪🇺</span> by <a href="https://social.headbright.eu/@konstantin">Konstantin</a></p>
|
||||
|
||||
{% with linkedin_url=settings.base.NavigationSettings.linkedin_url github_url=settings.base.NavigationSettings.github_url mastodon_url=settings.base.NavigationSettings.mastodon_url %}
|
||||
{% if linkedin_url or github_url or mastodon_url %}
|
||||
<p>
|
||||
Follow me on:
|
||||
{% if github_url %}
|
||||
<a href="{{ github_url }}">GitHub</a>
|
||||
{% endif %}
|
||||
{% if linkedin_url %}
|
||||
<a href="{{ linkedin_url }}">Twitter</a>
|
||||
{% endif %}
|
||||
{% if mastodon_url %}
|
||||
<a href="{{ mastodon_url }}">Mastodon</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
<nav>
|
||||
{% with linkedin_url=settings.base.NavigationSettings.linkedin_url github_url=settings.base.NavigationSettings.github_url mastodon_url=settings.base.NavigationSettings.mastodon_url %}
|
||||
{% if linkedin_url or github_url or mastodon_url %}
|
||||
<ul class="flex space-x-8">
|
||||
{% if mastodon_url %}
|
||||
<li><a href="{{ mastodon_url }}"><span class="emoji">🐘</span> Mastodon</a></li>
|
||||
{% endif %}
|
||||
{% if github_url %}
|
||||
<li><a href="{{ github_url }}"><span class="emoji">🔬</span> GitHub</a></li>
|
||||
{% endif %}
|
||||
{% if linkedin_url %}
|
||||
<li><a href="{{ linkedin_url }}"><span class="emoji">💼</span> LinkedIn</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
</nav>
|
||||
|
||||
{% get_footer_text %}
|
||||
</footer>
|
Loading…
Add table
Add a link
Reference in a new issue