Move 'td' to end of page titles for better scannability

Amolith created

Change summary

templates/error.html   | 2 +-
templates/index.html   | 2 +-
templates/project.html | 2 +-
templates/task.html    | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)

Detailed changes

templates/error.html 🔗

@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}td — error{% endblock %}
+{% block title %}error — td{% endblock %}
 
 {% block content %}
 <div role="alert" data-variant="error">

templates/index.html 🔗

@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}td — Projects{% endblock %}
+{% block title %}Projects — td{% endblock %}
 
 {% block content %}
 <h1>Projects</h1>

templates/project.html 🔗

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 {% import "macros.html" as macros %}
 
-{% block title %}td — {{ project_name }}{% endblock %}
+{% block title %}{{ project_name }} — td{% endblock %}
 
 {% block content %}
 <nav aria-label="Breadcrumb">

templates/task.html 🔗

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 {% import "macros.html" as macros %}
 
-{% block title %}td — {{ task.title }}{% endblock %}
+{% block title %}{{ task.title }} — td{% endblock %}
 
 {% block content %}
 <nav aria-label="Breadcrumb">