21 lines
502 B
HTML
21 lines
502 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>/ss/</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/ss.css">
|
|
<script type="text/javascript" src="/static/ss.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="globalContainer">
|
|
{% for feed in feeds %}
|
|
<div>
|
|
<h3>{{ feed['meta']['title'] }}</h3>
|
|
{% for entry in feed['entries'] %}
|
|
<span class="date">{{ entry['date'] }}</span><a href="{{ entry['link'] }}">{{ entry['title'] }}</a><br>
|
|
{% endfor %}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html>
|