blob: b1a8ce0b7bb7dde1deab52199276c21ef2436f4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html>
<head>
<title>O'Reily Memes</title>
<style>
img.meme {width: 24%;}
</style>
</head>
<body>
<h1>O'Reily Memes</h1>
<p>{% for meme in memes %}
<a href="{{ meme.orig }}"><img class=meme src="{{ meme.thumb }}"></a>{% endfor %}
</p>
<h1>Related links</h1>
<p>
<a href="https://www.reddit.com/r/orlybooks/">r/orlybooks/</a>
</p>
</body>
</html>
|