Skip to content
Snippets Groups Projects
footer.html 1.43 KiB
Newer Older
Hugo Trentesaux's avatar
Hugo Trentesaux committed
<footer class="w3-cell-row">
  <div class="w3-container w3-cell w3-mobile">
      <h3>Rechercher un contenu</h3>
      <input id="footersearch" type="text" class="search-query search_input" placeholder="Rechercher...">
      <script>
        /// CUSTOM DIRTY CODE TO GO TO SEARCH PAGE
        var $footerSearch = document.getElementById("footersearch");
        $footerSearch.addEventListener("keyup", function(k) {
            if (k.code == 'Enter') {
                var $footerSearch = document.getElementById("footersearch");
                var footerSearchString = $footerSearch.value; 
                console.log("pressed enter")
                document.location.href = "{{ get_url(path='@/search.md') | safe }}?s=" + footerSearchString;
Hugo Trentesaux's avatar
Hugo Trentesaux committed
  </div>
  
  <div class="w3-container w3-cell w3-mobile">
      <h3>Vous voyez une erreur ?</h3>
      <a class="w3-button" href="{{ get_url(path='@/wiki/about/contact.md') }}">Dites-le sur le forum !</a>
Hugo Trentesaux's avatar
Hugo Trentesaux committed
  </div>
  
  <div class="w3-container w3-cell w3-mobile">
      <ul>
          <li><a href="{{ get_url(path='@/wiki/about/_index.md') }}">Licence</a></li>
          <li><a href="{{ get_url(path='@/wiki/about/qui-sommes-nous.md') }}">Qui sommes-nous ?</a></li>
          <li><a href="{{ get_url(path='@/wiki/about/contact.md') }}">Contact</a></li>
          <li><a href="{{ get_url(path='@/wiki/financements.md') }}">Financements</a></li>
Hugo Trentesaux's avatar
Hugo Trentesaux committed
      </ul>
  </div>
  
  </footer>