generated from github/haikus-for-codespaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
26 lines (26 loc) · 815 Bytes
/
index.ejs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
<head>
<title>Haikus for Mona</title>
<link href="/css/main.css" rel="stylesheet" type="text/css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Haikus for Mona">
<meta property="og:description" content="Some of the best haikus you'll ever read about our rescue dog June">
<meta property="og:image" content="/images/sunlight.jpg">
</head>
<body>
<h1>Haikus for Mona</h1>
<div>
<% for(var i=0; i < haikus.length; i++) { %>
<img
class="mona-images"
src="images/<%= haikus[i].image %>" />
<div
class="haiku-containers">
<p
class="haikus"
><%- haikus[i].text %></p>
</div>
<% } %>
</div>
</html>