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

13 lines
422 B
HTML

{% extends 'layout.html' %}
{% block title %}Welcome to RSShub!{% endblock title %}
{% block content %}
<div class="jumbotron">
<h1 class="display-4">Welcome to RSSHub!</h1>
<p class="lead">If you see this page, the RSSHub is successfully installed and working.</p>
<p>
<a class="btn btn-primary btn-lg" role="button" href="{{url_for('main.feeds')}}">View All Feeds</a>
</p>
</div>
{% endblock %}