mirror of
https://github.com/d0zingcat/RSSHub-python.git
synced 2026-05-14 07:26:44 +00:00
11 lines
301 B
HTML
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 %} |