diff --git a/_layouts/system.html b/_layouts/system.html
new file mode 100644
index 0000000000000000000000000000000000000000..73cd7e84a8210eb0b74fffc0268b456f1c2fd5cc
--- /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>