-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathnews.ejs
26 lines (26 loc) · 1.43 KB
/
news.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 lang="<%=language%>" dir="<%=t('direction')%>" >
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title><%=t('news.title')%></title>
<link rel='stylesheet' href='/css/header.css'>
<link rel='stylesheet' href='/css/news.css'>
<link rel='stylesheet' href='/css/footer.css'>
<link rel="icon" href="/img/favicon-light.png" media="(prefers-color-scheme: light)" />
<link rel="icon" href="/img/favicon-dark.png" media="(prefers-color-scheme: dark)" id="favicon" />
</head>
<body>
<%- include(`${viewsfolder}/components/header`, {t:t, languages:languages, language:language}) %>
<main>
<div id="content">
<h1 class="center"><%=t('news.title')%></h1>
<hr>
<%-newsHTML%>
<p class="body"><%=t('news.more_dev_logs.0')%><a target='_blank' href='https://discord.gg/NFWFGZeNh5'><%=t('news.more_dev_logs.1')%></a><%=t('news.more_dev_logs.2')%><a href='https://www.chess.com/forum/view/chess-variants/infinite-chess-app-devlogs-and-more' target='_blank'><%=t('news.more_dev_logs.3')%></a></p>
</div>
</main>
<%- include(`${viewsfolder}/components/footer`, {t:t, languages:languages, language:language}) %>
</body>
</html>