mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-04-05 00:44:18 -04:00
20 lines
538 B
Plaintext
20 lines
538 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<% include ./partials/head.ejs %>
|
|
</head>
|
|
<body>
|
|
<% include ./partials/preloader.ejs %>
|
|
|
|
<main>
|
|
<%- include(template) %>
|
|
</main>
|
|
|
|
<% include ./partials/footer.ejs %>
|
|
<script>
|
|
var expressConfig = {port: <%= config.application.port %>, hostname: '<%= hostname %>', baseUrl: '<%= baseUrl %>'};
|
|
</script>
|
|
<script src="/dist/<%= assets.js %>" type="application/javascript"></script>
|
|
</body>
|
|
</html>
|