mirror of
https://github.com/11notes/docker-kms-gui.git
synced 2025-11-02 12:23:13 +00:00
45 lines
1.2 KiB
HTML
45 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>py-kms {% block title %}{% endblock %}</title>
|
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename= 'favicon.ico') }}">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename= 'css/bulma.min.css') }}">
|
|
<style>
|
|
#content {
|
|
margin: 1em;
|
|
overflow-x: auto;
|
|
}
|
|
pre {
|
|
overflow-x: auto;
|
|
padding: 0.5em;
|
|
}
|
|
{% if path != '/' %}
|
|
div.backtohome {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
{% endif %}
|
|
{% block style %}{% endblock %}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
|
|
{% if path != '/' %}
|
|
<div class="block backtohome">
|
|
<a class="button is-normal is-responsive" href="/">
|
|
Back to home
|
|
</a>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<script>
|
|
for(let element of document.getElementsByClassName('convert_timestamp')) {
|
|
element.innerText = new Date(element.innerText).toLocaleString();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html> |