Files
nodejs-web-template/views/index.ejs
Cory Sanin 237d076668
Some checks failed
NPM Audit Check / Check NPM audit (push) Has been cancelled
App Image CI / Build app image (push) Has been cancelled
Initial commit
2025-10-09 18:48:59 -05:00

15 lines
268 B
Plaintext

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<%- include("head", locals) %>
</head>
<body class="preload">
<%- include("navigation", locals) %>
<div class="content">
<h1>Hello World</h1>
</div>
</body>
</html>