hbbs.decentral1.se/hbbs/templates/layout.html

68 lines
1.8 KiB
HTML
Raw Normal View History

2020-04-04 18:55:53 +02:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
2020-04-04 20:09:24 +02:00
<title>hbbs.decentral1.se</title>
2020-04-04 18:55:53 +02:00
<link
rel="stylesheet"
2020-04-04 21:09:47 +02:00
href="/static/css/bootstrap.min.css"
type="text/css"
media="screen"
/>
<link
rel="stylesheet"
href="/static/css/bootstrap-grid.min.css"
type="text/css"
media="screen"
/>
<link
rel="stylesheet"
href="/static/css/styles.css"
2020-04-04 18:55:53 +02:00
type="text/css"
media="screen"
/>
2020-04-04 19:37:38 +02:00
<link rel="icon" href="/static/images/favicon.ico" />
2020-04-04 18:55:53 +02:00
</head>
<body>
2020-04-04 21:09:47 +02:00
<div class="container-fluid">
<div class="row">
<div id="navigation" class="col-md-4">
<img
2020-04-04 21:34:32 +02:00
id="hbbs-logo"
2020-04-05 12:04:21 +02:00
class="img-fluid"
2020-04-05 11:18:51 +02:00
src="/static/images/hbbs_logo.png"
2020-04-04 21:09:47 +02:00
alt="hbbs logo"
/>
2020-04-05 11:18:51 +02:00
<ul id="navbar-list" class="no-style-list">
2020-04-04 21:09:47 +02:00
<li><a href="/">About</a></li>
<li><a href="/programmes">Programmes</a></li>
<li><a href="/collection">Collection</a></li>
<li><a href="/participate">Participate</a></li>
2020-04-05 12:13:40 +02:00
<li><a href="/glossary">Glossary</a></li>
2020-04-04 21:09:47 +02:00
</ul>
</div>
<div id="content" class="col-md-4">
2020-04-04 22:04:12 +02:00
<img
id="hbbs-bubbles-top"
2020-04-05 12:04:21 +02:00
class="img-fluid"
2020-04-05 11:18:51 +02:00
src="/static/images/bubbles_1_outline.png"
alt="hbbs bubbles 1"
/>
<div id="content-block">
{% block content %}{% endblock %}
</div>
<img
id="hbbs-bubbles-bottom"
2020-04-05 12:04:21 +02:00
class="img-fluid"
2020-04-05 11:18:51 +02:00
src="/static/images/bubbles_2_outline.png"
alt="hbbs bubbles 2"
2020-04-04 22:04:12 +02:00
/>
2020-04-04 21:09:47 +02:00
</div>
</div>
2020-04-04 20:09:24 +02:00
</div>
2020-04-04 18:55:53 +02:00
</body>
</html>