summaryrefslogtreecommitdiff
path: root/views/things/ghrss/index.html
diff options
context:
space:
mode:
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 %}