hr@0
|
1 |
<!DOCTYPE html>
|
hr@0
|
2 |
<html lang="en"><head>
|
hr@0
|
3 |
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
info@79
|
4 |
<meta charset="utf-8">
|
info@79
|
5 |
<!--meta http-equiv="X-UA-Compatible" content="IE=edge"-->
|
rb@263
|
6 |
|
rb@263
|
7 |
<!--
|
rb@263
|
8 |
This website is based on the pymove3d-app (https://bitbucket.org/pkoppatz/pymove3d-app), License GPL V3.
|
rb@263
|
9 |
pymove3d-app is copyrighted 2013-2014 of Peter Koppatz <peter@koppatz.com>, Hans Richter <hr.richter@web.de>,
|
rb@263
|
10 |
Reimar Bauer <rb.proj@gmail.com>, Stefania Trabucchi <info@trabucchi.de>.
|
rb@263
|
11 |
-->
|
rb@263
|
12 |
|
info@79
|
13 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
j@252
|
14 |
<meta name="description" content="Die ESKP Info Seite des IEK-7, Forschungszentrum Jülich GmbH">
|
rb@233
|
15 |
<meta name="keywords" content="ESKP,IEK-7,Ozoneverlust">
|
rb@233
|
16 |
<meta name="author" content="Forschungszentrum Jülich GmbH">
|
info@127
|
17 |
<link rel="shortcut icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico')}}">
|
hr@0
|
18 |
|
j@252
|
19 |
<title>Die ESKP Info Seite des IEK-7, Forschungszentrum Jülich GmbH</title>
|
hr@0
|
20 |
|
info@79
|
21 |
<!-- Bootstrap core CSS -->
|
info@79
|
22 |
<link href="/static/css/bootstrap.css" rel="stylesheet">
|
hr@0
|
23 |
|
info@79
|
24 |
<!-- Just for debugging purposes. Don't actually copy this line! -->
|
info@79
|
25 |
<!--[if lt IE 9]><script src="/static/js/ie8-responsive-file-warning.js"></script><![endif]-->
|
hr@0
|
26 |
|
info@79
|
27 |
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
hr@0
|
28 |
<!--[if lt IE 9]>
|
hr@0
|
29 |
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
hr@0
|
30 |
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
|
info@79
|
31 |
<![endif]-->
|
info@79
|
32 |
</head>
|
hr@0
|
33 |
|
info@79
|
34 |
<body>
|
info@79
|
35 |
<div id="wrap">
|
info@79
|
36 |
<header>
|
info@79
|
37 |
<!-- Fixed navbar -->
|
info@79
|
38 |
<div class="navbar navbar-default" role="navigation">
|
info@79
|
39 |
<div class="container">
|
info@79
|
40 |
<div class="navbar-header">
|
info@79
|
41 |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
info@79
|
42 |
<span class="sr-only">Toggle navigation</span>
|
info@79
|
43 |
<span class="icon-bar"></span>
|
info@79
|
44 |
<span class="icon-bar"></span>
|
info@79
|
45 |
<span class="icon-bar"></span>
|
info@79
|
46 |
</button>
|
rb@233
|
47 |
<a class="navbar-brand" href="/"><img class="logo" src="/static/images/Forschungszentrum-logo.gif" title="Forschungszentrum Jülich GmbH" alt="logo Forschungszentrum Jülich GmbH" /></a>
|
info@79
|
48 |
</div>
|
info@79
|
49 |
<div class="collapse navbar-collapse">
|
info@108
|
50 |
<ul class="nav navbar-nav navbar-right">
|
peter@142
|
51 |
{% for href, caption in get_topmenue(): %}
|
info@79
|
52 |
{%- if href[1:] == act -%}
|
rb@154
|
53 |
<li class="active">{% else %} <li>{% endif %}<a href="{{ href }}" >{{ caption }}</a></li>
|
info@79
|
54 |
{% endfor %}
|
rb@233
|
55 |
|
info@79
|
56 |
</ul>
|
info@61
|
57 |
</div><!--/.nav-collapse -->
|
info@61
|
58 |
</div>
|
info@61
|
59 |
</div>
|
info@61
|
60 |
</header>
|
info@79
|
61 |
<div id="main">
|
info@79
|
62 |
{% block body %}{% endblock %}
|
info@79
|
63 |
</div><!-- /main -->
|
info@79
|
64 |
</div> <!-- /wrap -->
|
info@79
|
65 |
{% include "footer.html" %}
|
hr@0
|
66 |
<!-- Bootstrap core JavaScript
|
hr@0
|
67 |
================================================== -->
|
hr@0
|
68 |
<!-- Placed at the end of the document so the pages load faster -->
|
info@48
|
69 |
<script src="/static/js/jquery-1.10.2.min.js"></script>
|
peter@201
|
70 |
<script src="/static/js/bootstrap.js"></script>
|
info@91
|
71 |
<script type="text/javascript">
|
info@91
|
72 |
$(document).ready(function() {
|
info@102
|
73 |
$('#myCarousel').carousel({
|
info@102
|
74 |
interval: 5000
|
info@102
|
75 |
})
|
info@102
|
76 |
$('#myCarousel').on('slid.bs.carousel', function() {
|
info@91
|
77 |
//alert("slid");
|
info@102
|
78 |
});
|
info@102
|
79 |
});
|
info@91
|
80 |
</script>
|
hr@0
|
81 |
|
info@79
|
82 |
</body>
|
info@79
|
83 |
</html>
|