From 592b5d996dda01d7c3479e4278c1f882961d5745 Mon Sep 17 00:00:00 2001
From: Soyoon Kim <lynn321kim@gmail.com>
Date: Tue, 11 Oct 2022 02:31:19 +0000
Subject: [PATCH] Update wiki/layout.html

---
 wiki/layout.html | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/wiki/layout.html b/wiki/layout.html
index 9b43ee1..2ebda91 100644
--- a/wiki/layout.html
+++ b/wiki/layout.html
@@ -19,3 +19,31 @@
 <body>
   <!-- Navigation -->
   {% include 'menu.html' %}
+<!-- Header -->
+  <header class="bg-hero py-5 mb-5">
+    <div class="container h-100">
+      <div class="row h-100 align-items-center">
+        <div class="col-lg-12">
+          <h1 class="display-4 text-white mt-5 mb-2">{{ self.title() }}</h1>
+	        <p class="lead mb-5 text-white-50">{% block lead %}{% endblock %}</p>
+        </div>
+      </div>
+    </div>
+  </header>
+
+  <!-- Page Content -->
+  <div class="container">
+    {% block page_content %}{% endblock %}
+  </div>
+
+  <!-- Footer: MUST mention license AND have a link to team wiki's repository on gitlab.igem.org -->
+  {% include 'footer.html' %}
+
+  <!-- Wiki Tools: Teams are allowed to remove it -->
+  {% include 'wiki-tools.html' %}
+
+  <!-- Bootstrap Bundle with Popper -->
+  <script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script>
+</body>
+</html>
+
-- 
GitLab