Skip to content
Snippets Groups Projects
Commit 7be92341 authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

check footer and nav links

parent 6e2dfd75
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
var $footerSearch = document.getElementById("footersearch"); var $footerSearch = document.getElementById("footersearch");
var footerSearchString = $footerSearch.value; var footerSearchString = $footerSearch.value;
console.log("pressed enter") console.log("pressed enter")
document.location.href = "http://duniter.trentesaux.fr/search/?s=" + footerSearchString; document.location.href = "{{ get_url(path='@/search.md') | safe }}?s=" + footerSearchString;
} }
}); });
</script> </script>
...@@ -18,15 +18,15 @@ ...@@ -18,15 +18,15 @@
<div class="w3-container w3-cell w3-mobile"> <div class="w3-container w3-cell w3-mobile">
<h3>Vous voyez une erreur ?</h3> <h3>Vous voyez une erreur ?</h3>
<a class="w3-button" href="#">Contribuer sur Gitlab</a> <a class="w3-button" href="{{ get_url(path='@/wiki/about/contact.md') }}">Dites-le sur le forum !</a>
</div> </div>
<div class="w3-container w3-cell w3-mobile"> <div class="w3-container w3-cell w3-mobile">
<ul> <ul>
<li><a href="#">Licence</a></li> <li><a href="{{ get_url(path='@/wiki/about/_index.md') }}">Licence</a></li>
<li><a href="#">Qui sommes-nous ?</a></li> <li><a href="{{ get_url(path='@/wiki/about/qui-sommes-nous.md') }}">Qui sommes-nous ?</a></li>
<li><a href="#">Contact</a></li> <li><a href="{{ get_url(path='@/wiki/about/contact.md') }}">Contact</a></li>
<li><a href="#">Financements</a></li> <li><a href="{{ get_url(path='@/wiki/financements.md') }}">Financements</a></li>
</ul> </ul>
</div> </div>
......
...@@ -15,7 +15,8 @@ ...@@ -15,7 +15,8 @@
<div class="w3-dropdown-hover w3-mobile w3-right"> <div class="w3-dropdown-hover w3-mobile w3-right">
<button class="w3-button">Plus <i class="fa fa-caret-down"></i></button> <button class="w3-button">Plus <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-bar-block w3-dark-grey"> <div class="w3-dropdown-content w3-bar-block w3-dark-grey">
<a href="/wiki/about/" class="w3-bar-item w3-button w3-mobile">À propos</a> <a href="{{ get_url(path='@/wiki/about/_index.md') }}" class="w3-bar-item w3-button w3-mobile">À propos</a>
<a href="{{ get_url(path='@/wiki/about/contact.md') }}" class="w3-bar-item w3-button w3-mobile">Contact</a>
<a href="https://git.duniter.org/" class="w3-bar-item w3-button w3-mobile"><i class="fa fa-gitlab"></i> GitLab</a> <a href="https://git.duniter.org/" class="w3-bar-item w3-button w3-mobile"><i class="fa fa-gitlab"></i> GitLab</a>
<a href="https://forum.duniter.org/" class="w3-bar-item w3-button w3-mobile"><img alt="d" class="icon" src="https://simpleicons.org/icons/discourse.svg"/> Forum</a> <a href="https://forum.duniter.org/" class="w3-bar-item w3-button w3-mobile"><img alt="d" class="icon" src="https://simpleicons.org/icons/discourse.svg"/> Forum</a>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment