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.
 
 
 
 

24 lines
697 B

<!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 name="viewport" content="width=300">
<style>
html, body {
margin: 0px;
padding: 0px;
background-color: {{ color }};
}
</style>
</head>
<body>
<div class="uk-text-large uk-align-center">
{% block body %}{% endblock %}
</div>
</body>
</html>