2019-12-30 22:09:33 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<!-- Required meta tags -->
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
|
|
|
|
<!-- Bootstrap CSS -->
|
|
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
|
|
|
|
|
|
|
<title>{% block title %}Welcome to {% endblock %} | ungleich.ch</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
|
|
<a class="navbar-brand" href="https://ungleich.ch">ungleich</a>
|
|
|
|
<button class="navbar-toggler" type="button"
|
|
|
|
data-toggle="collapse"
|
|
|
|
data-target="#navbarSupportedContent"
|
|
|
|
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
<li class="nav-item active">
|
|
|
|
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
|
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
|
|
<a class="nav-link" href="#">Link</a>
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<form class="form-inline my-2 my-lg-0"
|
|
|
|
action="https://search.ungleich.ch/yacysearch.html" method="get">
|
|
|
|
<input class="form-control mr-sm-2" type="search"
|
|
|
|
placeholder="Search" name="query" aria-label="Search">
|
|
|
|
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
|
|
|
|
<div class="position-relative overflow-hidden p-3 p-md-5 m-md-3 text-center bg-light">
|
|
|
|
<div class="col-md-5 p-lg-5 mx-auto my-5">
|
|
|
|
<h1 class="display-4 font-weight-normal">{{ self.title() }}</h1>
|
|
|
|
<p class="lead font-weight-normal">
|
|
|
|
{% block subtitle %}{% endblock %}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<div class="product-device shadow-sm d-none d-md-block"></div>
|
|
|
|
<div class="product-device product-device-2 shadow-sm d-none d-md-block"></div>
|
|
|
|
</div>
|
|
|
|
|
2019-12-30 22:54:13 +00:00
|
|
|
{% block content %}{% endblock %}
|
2019-12-30 22:09:33 +00:00
|
|
|
|
|
|
|
<footer class="footer mt-auto py-3">
|
|
|
|
<div class="container">
|
|
|
|
<span class="text-muted">Copyright
|
|
|
|
<a class=footer-link href="https://ungleich.ch">ungleich</a>.</span>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|