32 lines
774 B
Plaintext
32 lines
774 B
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>
|
||
|
|
||
|
<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>
|