blob: 1e64fa315ffb761a508a4292bc9ad85e56e85c14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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 %}
|