mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 20:03:34 +01:00
35 lines
No EOL
606 B
HTML
35 lines
No EOL
606 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
{% include 'parts/head.html' %}
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>RSS/Atom URL</th>
|
|
<th>Unique tag</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for feed in feeds %}
|
|
<tr>
|
|
<td>{{ feed.feed_name }}</td>
|
|
<td>{{ feed.rss_source | urlize(target="_blank") }}</td>
|
|
<td>{{ feed.unique_tag }}</td>
|
|
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'parts/footer.html' %}
|
|
</body>
|
|
|
|
</html> |