summaryrefslogtreecommitdiff
path: root/views/things/ghrss/index.html
diff options
context:
space:
mode:
authorhorus2022-10-31 12:24:35 +0100
committerhorus2022-10-31 12:24:35 +0100
commit3c4aa25af0cd6f56db85d503ab552d39b81b5c17 (patch)
treec9e7e8de0be62e7f1389a8c19485a6ca29806497 /views/things/ghrss/index.html
parentf0c30d3bf798d52d5c2b14b0a2a12167ed7c2d72 (diff)
downloadmoehring-3c4aa25af0cd6f56db85d503ab552d39b81b5c17.tar.gz
renamed to things
Diffstat (limited to 'views/things/ghrss/index.html')
-rw-r--r--views/things/ghrss/index.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/views/things/ghrss/index.html b/views/things/ghrss/index.html
new file mode 100644
index 0000000..1e64fa3
--- /dev/null
+++ b/views/things/ghrss/index.html
@@ -0,0 +1,32 @@
+{% extends "snippets/layout.html" %}
+
+{% block description %}
+{% endblock %}
+
+{% block title %}
+GHRSS - Trending Repos
+{% endblock %}
+
+{% block css %}
+{% endblock %}
+
+{% block main %}
+<div class="container" id="index">
+
+ <div class="flavor-text">
+ <h1>Trending Repos from Github as RSS-Feed</h1>
+ <em>Choose your language, get the result of <a href="https://github.com/trending">github.com/trending</a> as RSS-Feed</em>
+ </div>
+ <ul>
+ {% for entry in data %}
+ <li>
+ <a class="" href="/feed/ghrss?l={{ entry.name }}">{{ entry.name | e }}</a>
+ </li>
+ {% endfor %}
+ <!-- a class="dropdown-item" href="/feed/">Give Me All Languages</a-->
+ </ul>
+ <p>
+ </p>
+
+</div>
+{% endblock %}