Add title to all pages

This commit is contained in:
2022-12-08 13:55:35 +01:00
parent 555fa77cfc
commit 13bb905713
4 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block title %} | Add new feed{% endblock %}
{% block content %}
{# Home / Add #}
<nav aria-label="breadcrumb">

View File

@ -6,7 +6,7 @@
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous">
<title>RSS - {% block title %}{% endblock %}</title>
<title>discord-rss-bot{% block title %}{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body class="text-white-50" style="background: #111111;">

View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Feed{% endblock %}
{% block title %} | {{ feed.title }}{% endblock %}
{% block content %}
<div class="p-2 mb-2">
<a class="text-muted" href="{{ feed.link }}"><h2>{{ feed.title }}</h2></a>

View File

@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Index{% endblock %}
{% block title %}{% endblock %}
{% block head %}
<script>
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))