You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
537 B
18 lines
537 B
8 years ago
|
<!doctype html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>NFGame</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/uikit.min.css') }}" />
|
||
|
<script src="{{ url_for('static', filename='js/jquery-min.js') }}"></script>
|
||
|
<script src="{{ url_for('static', filename='js/uikit.min.js') }}"></script>
|
||
|
<script src="{{ url_for('static', filename='js/uikit-icons.min.js') }}"></script>
|
||
|
<meta http-equiv="refresh" content="10">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
{% block body %}{% endblock %}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
|