-
Notifications
You must be signed in to change notification settings - Fork 1
/
newsletter.ejs
34 lines (31 loc) · 1.21 KB
/
newsletter.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
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta property="og:title" content="Android Dev BR News" />
<!-- prettier-ignore -->
<%- include('styles'); %>
</head>
<body>
<center>
<table width="640" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="wrapper">
<tr>
<td>
<%- include('components/header'); %>
<% data.forEach((section) => { %>
<%- include('components/section', section); %>
<% }); %>
<%- include('components/article-section', { articles }); %>
<tr>
<td height="28"> </td>
</tr>
<%- include('components/jobs-section', { jobs }); %>
<%- include('components/footer'); %>
</td>
</tr>
</table>
</center>
</body>
</html>