-
Shraddha Raghuram authoredShraddha Raghuram authored
layout.html 2.18 KiB
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="https://static.igem.wiki/teams/5054/logo-kleur.svg"/>
<link rel="license" href="https://creativecommons.org/licenses/by/4.0/"/>
<!-- Bootstrap CSS -->
<link href="{{ url_for('static', filename = 'bootstrap.min.css') }}" rel="stylesheet">
<!-- Custom CSS -->
<link href="{{ url_for('static', filename = 'style.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename = 'navbar.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename = 'page.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename = 'footer.css') }}" rel="stylesheet">
<link href="{{ url_for('static', filename = 'homepage.css') }}" rel="stylesheet">
<!-- <style>
body {
font-family: AccidenzCommons, sans-serif;
line-height: 1.6;
}
.image-text-wrapper {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
}
.image-text-wrapper img {
margin-right: 20px;
margin-left: 20px;
}
.image-text-wrapper figure {
margin: 0;
}
</style> -->
<title>Home | TU-Delft - iGEM 2024</title>
</head>
<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 custom-color 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' %}
<!-- Bootstrap Bundle with Popper -->
<script src="{{ url_for('static', filename = 'bootstrap.bundle.min.js') }}"></script>
</body>
</html>