You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
629 B

<!DOCTYPE html>
<html>
<head>
<link href="/app.css" rel="stylesheet"></link>
</head>
<body>
<ul>
<%for(let i = 0; i < posts.length; i++){%>
<li>
<iframe id="reddit-embed" src="https://www.redditmedia.com/<%=posts[i].data.permalink%>?ref_source=embed&amp;ref=share&amp;embed=true" sandbox="allow-scripts allow-same-origin allow-popups" style="border: none;" scrolling="no" width="640" height="526"></iframe>
</li>
<%}%>
</ul>
<nav>
<%if(previous){%>
<a href="/before/<%=previous%>">Previous</a>
<%}%>
<%if(next){%>
<a href="/after/<%=next%>">Next</a>
<%}%>
</nav>
</body>
</html>