secajs/src/views/home.ejs

18 lines
415 B
Text
Raw Normal View History

2025-02-17 00:03:44 +01:00
<!DOCTYPE html>
<html lang="en">
2025-02-18 11:10:14 +01:00
<head>
<title>Seca home</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2025-02-22 00:34:18 +01:00
<link rel="stylesheet" href="/css/seca.css" />
2025-02-18 11:10:14 +01:00
</head>
2025-02-17 00:03:44 +01:00
2025-02-18 11:10:14 +01:00
<body>
2025-02-22 01:11:55 +01:00
<%- include("partials/appCommonHeader") %>
2025-02-22 01:10:22 +01:00
<%- include("partials/appCommonScripts") %>
<script src="/javascript/home.js"></script>
2025-02-18 11:10:14 +01:00
</body>
</html>