Skip to content
Snippets Groups Projects
Select Git revision
  • d1f5b794ad0ce18cb4147af1c3cf1e5af0a8d0c2
  • master default
  • patch-1
3 results

default.html

Blame
  • Forked from KWARC / kwarc.info / www
    Source project has a limited visibility.
    default.html 820 B
    ---
    layout: compress
    ---
    
    {% assign sorted_pages = site.pages | sort: "menu_order" %}
    
    <!DOCTYPE html>
    <html lang="en-us">
        <!-- url = {{page.url}} -->
    
      {% include head.html %}
      
      <body>
        
        <header>
          {% include header.html %}
        </header>
        
        <main>
          <div class="container" id="body">
              {{ content }}
          </div>
        </main>
        
        <footer>
          {% include footer.html %}
        </footer>
    
        <!-- And also jQuery -->
        <script src="{{ site.baseurl }}/public/js/{{ site.jquery }}.min.js"></script>
        
        <!-- Materialize javascript components -->
        <script src="{{ site.baseurl }}/public/{{ site.materialize }}/js/materialize.min.js"></script>
        
        <!-- and our custom scripts -->
        <script src="{{ site.baseurl }}/public/js/kwarc.js"></script>
        
      </body>
    </html>