From 17e1acc504d1529bf2379e85002309c58621fc30 Mon Sep 17 00:00:00 2001 From: Michael Kohlhase <m.kohlhase@jacobs-university.de> Date: Sat, 6 May 2017 12:55:39 +0200 Subject: [PATCH] systems --- _layouts/system.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 _layouts/system.html diff --git a/_layouts/system.html b/_layouts/system.html new file mode 100644 index 0000000..73cd7e8 --- /dev/null +++ b/_layouts/system.html @@ -0,0 +1,30 @@ +--- +layout: default +--- + +<div class="page"> + <h1 class="page-title"> + {{page.title}} + {% if page.start %} + {{page.start}} - {% if page.end %} {{page.end}}{% endif %} + {% endif %} +</h1> +{% if page.subtitle %}<h2>{{page.subtitle}}</h2>{% endif %} + +{{ content }} + + {% if page.people %} + <h3>People</h3> + {{page.people}} + {% endif %} + + {% if page.collaborators %} + <h3>Collaborators</h3> + {{page.collaborators}} + {% endif %} + + {% if page.homepage %} + <h3>Project Home Page</h3> + <a href="{{page.url}}">{{page.homepage}}</a> + {% endif %} +</div> -- GitLab