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.
21 lines
540 B
21 lines
540 B
{% extends "base.html" %}
|
|
|
|
{% block head %}
|
|
<link rel="stylesheet" type="text/css" href="/static/select.css">
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}
|
|
scroll
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{% for post in feed %}
|
|
<div class="post">
|
|
<input type="checkbox" name="check" value="{{ loop.index }}"><br><br>
|
|
<h1>{{ post.title }}</h1>
|
|
<div><small>{{ post.published }}</small></div>
|
|
<div><small><a href="{{ post.link }}">{{ post.link }}</a></small></div>
|
|
<div>{{ post.summary | safe }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|