48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>
|
|
<%= mpgParams.title %>
|
|
</title>
|
|
|
|
<link rel="stylesheet" href="assets/css/poster.css">
|
|
|
|
</head>
|
|
<style>
|
|
:root {
|
|
<% if (mpgParams.titleColor) { %>
|
|
--font-color-title: <%=mpgParams.titleColor%>;
|
|
<% } %>
|
|
<% if (mpgParams.sentenceColor) { %>
|
|
--font-color-sentence: <%=mpgParams.sentenceColor%>;
|
|
<% } %>
|
|
<% if (mpgParams.borderColor) { %>
|
|
--border-color: <%=mpgParams.borderColor%>;
|
|
<% } %>
|
|
<% if (mpgParams.backgroundColor) { %>
|
|
--background-color: <%=mpgParams.backgroundColor%>;
|
|
<% } %>
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
<%- include('header.ejs') -%>
|
|
|
|
<main>
|
|
<img style="width: <%= mpgParams.imageWidth %>" src="<%= mpgParams.imageUrl %>"
|
|
alt="An image supplied for the motivational poster">
|
|
<!-- <p>➡️<%= mpgParams.imageUrl %>⬅️</p> -->
|
|
<h1>
|
|
<%= mpgParams.title %>
|
|
</h1>
|
|
<p>
|
|
<%= mpgParams.sentence %>
|
|
</p>
|
|
</main>
|
|
<%- include('footer.ejs') -%>
|
|
</body>
|
|
|
|
</html> |