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