mercury/web/templates/base.tpl

14 lines
359 B
Smarty
Raw Permalink Normal View History

2023-09-03 04:11:56 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/static/css/style.css" />
2023-09-04 03:33:13 +02:00
<title>{% block title %}{{ config.Name }}{% endblock %}</title>
2023-09-03 04:11:56 +02:00
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>