mirror of
https://github.com/towalink/wgfrontend.git
synced 2025-04-19 08:55:11 +00:00
21 lines
612 B
HTML
21 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Towalink WireGuard Frontend</title>
|
|
<link rel="stylesheet" media="screen" href="/static/styles.css" />
|
|
</head>
|
|
<body>
|
|
{% include 'part_header.html' %}
|
|
<section>
|
|
<div class="content">
|
|
{%- block content %}{% endblock %}
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
<a href="https://github.com/towalink/wgfrontend/" target="_blank">Powered by the open source "Towalink WireGuard Frontend"</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|