CostaCoffe/templates/plain/html/index.html

27 lines
503 B
HTML
Raw Normal View History

2024-08-09 15:44:57 +07:00
<!DOCTYPE html>
<html>
2024-11-15 15:02:52 +07:00
<head>
2024-08-09 15:44:57 +07:00
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>${title}</title>
<link rel="stylesheet" href="/templates/plain/css/style.css">
2024-11-15 17:22:44 +07:00
<link rel="stylesheet" href="/css/home.css">
2024-11-15 15:02:52 +07:00
<script src="/js/feather.min.js"></script>
</head>
<body>
${navbar}
2024-08-09 15:44:57 +07:00
<main>
2024-11-15 15:02:52 +07:00
${container}
2024-08-09 15:44:57 +07:00
</main>
${footer}
2024-11-15 15:02:52 +07:00
</body>
2024-08-09 15:44:57 +07:00
</html>
2024-11-15 15:02:52 +07:00
<script>
feather.replace();
</script>