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.
31 lines
674 B
31 lines
674 B
<html>
|
|
<head>
|
|
<style>
|
|
li {
|
|
border:1px solid black;
|
|
list-style:none;
|
|
}
|
|
ul {
|
|
padding:0
|
|
}
|
|
</style>
|
|
</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&ref=share&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>
|