-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating default template adding Bubo version
- Loading branch information
1 parent
16a2525
commit 11a4042
Showing
1 changed file
with
47 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>🦉 Bubo Reader</title> | ||
<link rel="stylesheet" href="/style.css"> | ||
</head> | ||
<body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>🦉 Bubo Reader</title> | ||
<link rel="stylesheet" href="/style.css" /> | ||
</head> | ||
<body> | ||
<h1>🦉 Bubo Reader</h1> | ||
|
||
<h1>🦉 Bubo Reader</h1> | ||
|
||
{% for group, feeds in data %} | ||
<h2>{{ group }}</h2> | ||
{% for feed in feeds %} | ||
<details> | ||
<summary> | ||
<span class="feed-title">{{ feed.title }}</span> | ||
<span class="feed-url">({{ feed.feed }})</span> | ||
</summary> | ||
<ul> | ||
{% for item in feed.items %} | ||
<li> | ||
{{ item.timestamp | formatDate }} - <a href="{{ item.link }}" target='_blank' rel='noopener norefferer nofollow'>{{ item.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</details> | ||
{% endfor %} | ||
{% endfor %} | ||
|
||
{% if errors | length > 0 %} | ||
{% for group, feeds in data %} | ||
<h2>{{ group }}</h2> | ||
{% for feed in feeds %} | ||
<details> | ||
<summary> | ||
<span class="feed-title">{{ feed.title }}</span> | ||
<span class="feed-url">({{ feed.feed }})</span> | ||
</summary> | ||
<ul> | ||
{% for item in feed.items %} | ||
<li> | ||
{{ item.timestamp | formatDate }} - | ||
<a | ||
href="{{ item.link }}" | ||
target="_blank" | ||
rel="noopener norefferer nofollow" | ||
>{{ item.title }}</a | ||
> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</details> | ||
{% endfor %} {% endfor %} {% if errors | length > 0 %} | ||
<h2>Errors</h2> | ||
<p>There were errors trying to parse these feeds:</p> | ||
<ul> | ||
{% for error in errors %} | ||
{% for error in errors %} | ||
<li>{{ error }}</li> | ||
{% endfor %} | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
{% endif %} | ||
|
||
<br> | ||
<hr> | ||
<p> | ||
Last updated {{ now }}. | ||
</p> | ||
<p> | ||
Powered by <a href="https://github.com/georgemandis/bubo-rss">Bubo Reader (2.0.0)</a>, a project by <a href="https://george.mand.is">George Mandis</a>. | ||
</p> | ||
<p> | ||
<a href='https://github.com/sponsors/georgemandis'>❤️ Sponsor on GitHub</a> | ||
</p> | ||
|
||
</body> | ||
</html> | ||
<br /> | ||
<hr /> | ||
<p>Last updated {{ now }}.</p> | ||
<p> | ||
Powered by | ||
<a href="https://github.com/georgemandis/bubo-rss" | ||
>Bubo Reader (v{{ info.version }})</a | ||
>, a project by <a href="https://george.mand.is">George Mandis</a>. ❤️ | ||
<a href="{{ info.funding.url }}">Sponsor on GitHub</a> | ||
</p> | ||
</body> | ||
</html> |