all-in-one/php/templates/layout.twig

14 lines
388 B
Twig
Raw Normal View History

2021-11-30 18:20:42 +08:00
<html>
<head>
<title>AIO</title>
<link rel="stylesheet" href="/style.css" media="all" />
<link rel="icon" href="/img/favicon.png">
<script type="text/javascript" src="forms.js"></script>
<script type="text/javascript" src="options-form-submit.js"></script>
2021-11-30 18:20:42 +08:00
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>