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.
19 lines
623 B
19 lines
623 B
10 months ago
|
<!DOCTYPE html>
|
||
|
<html 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" />
|
||
|
<link rel="stylesheet" href="{{url_for('static', filename='simple.min.css')}}">
|
||
|
<link rel="stylesheet" href="{{url_for('static', filename='main.css')}}">
|
||
|
<script src="{{url_for('static', filename='main.js')}}"></script>
|
||
|
|
||
|
<title>{{i18n.head.title}}</title>
|
||
|
<link rel="icon" href="{{url_for('static', filename='favicon.png')}}" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>{{i18n.body.h1}}</h1>
|
||
|
</body>
|
||
|
</html>
|