Skip to content
Snippets Groups Projects
default.html 1.18 KiB
Newer Older
  • Learn to ignore specific revisions
  • Michael Kohlhase's avatar
    Michael Kohlhase committed
    <!DOCTYPE html>
    <html lang="en-us">
    
      {% include head.html %}
      
      <body>
        
        {% include nav.html %}
        
        
        <header class="intro-header" >
          <div class="container-fluid container-bg">
    	<div class="row">
    	  <div class="odk-logo" >
    	    <a href="{{ site.baseurl }}/">
                  <img class="img-responsive" src="{{ site.baseurl }}/public/logos/kwarc-logo-transparent.jpg" alt="KWARC logo" />
                </a>
              </div>
              <div class="site-heading">
                {% if page.layout == "post" %}
                <h1>{{ page.title }}</h1>
                {% if page.subtitle %}<h2 class="subheading" >{{ page.subtitle }}</h2>{% endif %}
                {% else %}
                <h1>{{site.tagline}}</h1>
                {% endif %}
              </div>
            </div>
          </div>
        </header>
        
        <div class="container main-content" >
            {{ content }}
        </div>
    
        {% include footer.html %}
        
        <!-- Include all compiled plugins (below), or include individual files as needed -->
        <script src="{{ site.baseurl }}/public/{{ site.bootstrap }}/js/bootstrap.min.js"></script>
        
      </body>
      <!--
          Built: {{ site.time }}
          Commit: {{ site.github.build_revision }}
      -->
    </html>