Skip to content
Snippets Groups Projects
project.html 858 B
Newer Older
  • Learn to ignore specific revisions
  • Michael Kohlhase's avatar
    Michael Kohlhase committed
    ---
    layout: default
    ---
    
    <div class="page">
      <h1 class="page-title">
        {{page.title}}
        {% if page.start %}
          {{page.start}} - {% if page.end %} {{page.end}}{% endif %}
        {% endif %}
    </h1>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    {% if page.subtitle %}<h2>{{page.subtitle}}</h2>{% endif %}
    {% if page.funding %}
      <p>funded by {{page.funding}}
        {% if page.program or page.grantid %}({% endif %}
        {% if page.program %}{{page.program}}{% endif %} 
        {% if page.grantid %} - {{page.grantid}}{% endif %}
        {% if page.program or page.grantid %}){% endif %}
      </p>
    {% endif %}
    
    {{ content }}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    
      {% if page.people %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      <h3>People</h3>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      {{page.people}}
      {% endif %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    
      {% if page.collaborators %}
      <h3>Collaborators</h3>
      {{page.collaborators}}
      {% endif %}
    
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      {% if page.homepage %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      <h3>Project Home Page</h3>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      <a href="{{page.url}}">{{page.homepage}}</a>
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
      {% endif %}
    
    Michael Kohlhase's avatar
    Michael Kohlhase committed
    </div>