The HTML page titles should be the same as the blog title

This commit is contained in:
Fabio Manganiello 2022-01-13 21:47:52 +01:00
parent 10532aa7c1
commit d52b2a7a84
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{% with title=title or 'Platypush blog', skip_header=skip_header, styles=['/css/blog.css', '/css/code.css'] %} {% with title=title or config.title or 'Blog', skip_header=skip_header or not config.header, styles=['/css/blog.css', '/css/code.css'] %}
{% include 'common-head.html' %} {% include 'common-head.html' %}
{% endwith %} {% endwith %}

View file

@ -16,7 +16,7 @@
<title>{{ title }}</title> <title>{{ title }}</title>
</head> </head>
<body> <body>
{% if not skip_header and config.header %} {% if not skip_header %}
<header> <header>
<div class="left"> <div class="left">
{% if config.logo %} {% if config.logo %}

View file

@ -1,4 +1,4 @@
{% with title=title or 'Platypush blog', skip_header=False, styles=['/css/home.css'] %} {% with title=title or config.title or 'Blog', skip_header=not config.header, styles=['/css/home.css'] %}
{% include 'common-head.html' %} {% include 'common-head.html' %}
{% endwith %} {% endwith %}