config email

This commit is contained in:
gws 2024-11-08 07:53:19 +01:00
parent 97d19732df
commit 653185b60f
4 changed files with 20 additions and 1 deletions

View file

@ -32,6 +32,7 @@ juice_logo_path = "flat_blocks.svg"
slogan = "Let's Build Something Together!"
email = "hello.vumwi@aleeas.com"
# juice_extra_menu = [
# { title = "Github", link = "https://github.com/glennwso"}
# ]

View file

@ -20,7 +20,7 @@ disable_toc = true
</div>
<div><img class="icon" />
<h3>General Support</h3>
<p>contact@example.com</p>
<p>{{ email() }}</p>
</div>
</div>
</div>

View file

@ -1,6 +1,9 @@
{% extends "juice/templates/index.html" %}
{% block head %}
<link rel="icon" href="/flat_blocks.svg" sizes="any" type="image/svg+xml">
<!-- <link rel="stylesheet" href="{{ get_url(path='carbon.css') }}"> -->
<link rel="stylesheet" href="{{ get_url(path='style.css') }}">
<!-- <link rel="stylesheet" href="{{ get_url(path='form.css') }}"> -->
@ -161,6 +164,20 @@
GitHub
</a>
{% if lang =="sv"%}
<a href="/sv/contact">
<span class="inline-icon-container">
</span>
Kontakt
</a>
{% else %}
<a href="/contact">
<span class="inline-icon-container">
</span>
Contact
</a>
{% endif %}
</div>
</footer>
{% endblock footer %}

View file

@ -0,0 +1 @@
<a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a>