aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--newspipe/templates/home.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/newspipe/templates/home.html b/newspipe/templates/home.html
index a4f60297..34149b5c 100644
--- a/newspipe/templates/home.html
+++ b/newspipe/templates/home.html
@@ -7,9 +7,11 @@
</style>
<div class="container-fluid">
{% if feeds|count == 0 %}
- <div class="col-md-4 col-md-offset-4">
- <h1>{{ _("You don't have any feeds.") }}</h1>
- <h1><a href="{{ url_for('feed.form') }}">{{ _('Add some') }}</a>, {{ _('or') }} <a href="{{ url_for('user.management') }}">{{ _('upload an OPML file.') }}</a></h1>
+ <div class="row justify-content-center">
+ <div class="col-md-6">
+ <h1>{{ _("You don't have any feeds.") }}</h1>
+ <h1><a href="{{ url_for('feed.form') }}">{{ _('Add some') }}</a>, {{ _('or') }} <a href="{{ url_for('user.management') }}">{{ _('upload an OPML file.') }}</a></h1>
+ </div>
</div>
{% else %}
<div class="row">
bgstack15