Skip to content

Commit

Permalink
fix title blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Archmonger committed Jan 12, 2022
1 parent 662e371 commit 1374cb8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
4 changes: 3 additions & 1 deletion conreq/_core/base/templates/conreq/centered_box.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
<html lang="en">

<head>
{% block title %}<title>{{ GeneralSettings.server_name }}</title>{% endblock title %}
{% block title %}
<title>{{ GeneralSettings.server_name }}</title>
{% endblock title %}
{% block description %}
<meta name="Description" content="{{ GeneralSettings.server_description }}">
{% endblock description %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends 'conreq/centered_box.html' %}
{% load static %}

{% block title %}First Time Setup{% endblock %}
{% block title %}
<title>First Time Setup</title>
{% endblock %}

{% block content %}
<div class="default-box-header">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends 'conreq/centered_box.html' %}
{% load static %}

{% block title %}Password Reset{% endblock %}
{% block title %}
<title>Password Reset</title>
{% endblock %}

{% block content %}
<div class="default-box-header">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

{% block title %}
{% if validLink %}
Password Reset
<title>Password Reset</title>
{% else %}
Invalid Password Reset
<title>Invalid Password Reset</title>
{% endif %}
{% endblock %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{% extends 'conreq/centered_box.html' %}
{% load static %}

{% block title %}Password Reset Sent{% endblock %}
{% block title %}
<title>Password Reset Sent</title>
{% endblock %}

{% block content %}
<div class="default-box-header">
Expand Down

0 comments on commit 1374cb8

Please sign in to comment.