This repository has been archived on 2023-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
media-host/views/pages/article.ejs
2023-05-12 00:32:13 -04:00

17 lines
421 B
Text

<!DOCTYPE html>
<html>
<head>
<title><%= aName %> - <%- config["meta"]["name"] %></title>
<%- include("../partial/html-head")%>
</head>
<body>
<%- include("../partial/header") %>
<div class="modal article">
<% if (config.alert) { %>
<div class="err"><p><%-config.alert%></p></div>
<% } %>
<%- output %>
</div>
<%- include("../partial/footer") %>
</body>
</html>