Files
RSSHub-python/rsshub/templates/main/feeds.html
2019-01-16 22:45:05 +08:00

11 lines
301 B
HTML

{% extends "layout.html" %}
{% block title %}All Feeds{% endblock title %}
{% block content %}
<div class="list-group">
{% for rule in rules %}
<a href="{{rule.rule}}" class="list-group-item list-group-item-action">{{rule.endpoint[5:]}}</a>
{% endfor %}
</div>
{% endblock content %}