introduce search interface
This commit is contained in:
49
templates/layout.html
Normal file
49
templates/layout.html
Normal file
@@ -0,0 +1,49 @@
|
||||
|
||||
|
||||
<!doctype html>
|
||||
<html class="no-js" lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FET Search</title>
|
||||
<meta http-equiv="Content-Security-Policy" content="default-src * https://*.2020.fet.at *.2020.fet.at; style-src 'self' 'unsafe-inline'; script-src 'self'">
|
||||
|
||||
|
||||
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='app.css') }}">
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='extra.css') }}">
|
||||
<script src="{{ url_for('static', filename='jquery-3.5.1.min.js') }}"></script>
|
||||
|
||||
{% block head %}
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="top-bar" id="main-menu">
|
||||
<div class="top-bar-left">
|
||||
<a href="/">
|
||||
<img src="{{ url_for('static', filename='logo2014_64.png')}}" style="height:40px; width:40px;" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="top-bar-right">
|
||||
<ul class="menu vertical medium-horizontal expanded medium-text-center">
|
||||
<li class=""><a href="/">Home</a> </li>
|
||||
<li class=""><a href="/">Aktuelles</a> </li>
|
||||
<li class=""><a href="#">Info</a> </li>
|
||||
<li class=""><a href="#">Team</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="grid-container">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
<!-- App.js -->
|
||||
<script src="{{ url_for('static', filename='app.js')}}"></script>
|
||||
{% block scr %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user