raincloud/templates/base.html
2022-04-10 23:39:47 +02:00

7 lines
375 B
HTML

<!doctype html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
<title>{{ config["directory"] }} - {{ cloud_name }}</title>
<h1>{{ config["directory"] }}</h1>
{% block content %}{% endblock %}