config email
This commit is contained in:
parent
97d19732df
commit
653185b60f
|
@ -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"}
|
||||
# ]
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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 %}
|
1
templates/shortcodes/email.html
Normal file
1
templates/shortcodes/email.html
Normal file
|
@ -0,0 +1 @@
|
|||
<a href="mailto:{{ config.extra.email }}">{{ config.extra.email }}</a>
|
Loading…
Reference in a new issue