boostorg / website-v2

New Boost website
https://boost.io
Boost Software License 1.0
8 stars 13 forks source link

News blog entries title is just "News" #1427

Closed grafikrobot closed 1 week ago

grafikrobot commented 1 week ago

The page for a news blog entry uses "News" for the site title. It is the norm for blog/news sites to use the title of the blog entry itself as the site title. Please make the site title be the same as the blog entry title. It allows for easier external linking and book marking.

GregKaleka commented 1 week ago

Fix would be trivial - in templates/news/detail.html:


- {% block title %}{% trans "News" %}{% endblock %}
+ {% block title %}{{ entry.title }}{% endblock %}