17 lines
555 B
HTML
17 lines
555 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"/>
|
|
<script src="{{ url_for('static', filename='highstock.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='exporting.js') }}"></script>
|
|
<title>{% block title %}{% endblock %} - IOC</title>
|
|
</head>
|
|
<body>
|
|
{% include 'data/navbar.html' %}
|
|
<br>
|
|
{% block body %}{% endblock %}
|
|
</body>
|
|
</html>
|