Changing name of Blog on Website

Hello community,

I am attempting to change the Blog Post page name from “Blog Post” to simply “Blog”.

The page templated is located under: apps/frappe/frappe/templates/includes/blog/blog.html
The template is as follows:

{% extends "templates/web.html" %}

{% block title %}{{ blog_title or _("Blog") }}{% endblock %}
{% block header %}<h1>{{ blog_title or _("Blog") }}</h1>{% endblock %}
{% block hero %}{% endblock %}

{% block page_content %}
<!-- no-header -->
<!-- no-breadcrumbs -->
<div class="blog-list-content">
	<div id="blog-list">
		{% include "templates/includes/list/list.html" %}
	</div>
</div>
{% endblock %}

{% block script %}
<script>{% include "templates/includes/list/list.js" %}</script>
{% endblock %}

I simply tried putting “Blog” in the block title and header but no luck.
I am making all of my changes in a custom app of course.

Any thoughts or pointers on why the changes to the template do not reflect on the live site.
Many thanks,
Max

1 Like

Hi maxvogel,

did you find a way to customize that?