Skip to content

Commit 11bec93

Browse files
committedMay 26, 2024·
jinja2 templates: changes the block name page_class -> layout_class in 6 templates where this change was not implemented as in commit ccd906c
1 parent 8627b02 commit 11bec93

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
 

‎askbot/jinja2/404.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "one_column_body.html" %}
22
<!-- template 404.jinja.html -->
33
{% block title %}{% filter trim %}{% trans %}Page not found{% endtrans %}{% endfilter %}{% endblock %}
4-
{% block page_class %}error-page error-404-page{% endblock %}
4+
{% block layout_class %}error-page error-404-page{% endblock %}
55
{% block content %}
66
<h1>{% trans %}Page not found{% endtrans %}</h1>
77
<p class="row">

‎askbot/jinja2/authopenid/complete.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#}
2020
{% block head %}{% endblock %}
2121
{% block title %}{% filter trim %}{% trans %}Complete registration{% endtrans %}{% endfilter %}{% endblock %}
22-
{% block page_class %}registration-page{% endblock %}
22+
{% block layout_class %}registration-page{% endblock %}
2323
{% block content %}
2424
<div class="flip-tabs">
2525
<div class="login complete-registration flip-content flip-content-active">

‎askbot/jinja2/authopenid/logout.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "one_column_body.html" %}
22
<!-- template logout.html -->
33
{% block title %}{% filter trim %}{% trans %}Logout{% endtrans %}{% endfilter %}{% endblock %}
4-
{% block page_class %}logout-page{% endblock %}
4+
{% block layout_class %}logout-page{% endblock %}
55
{% block content %}
66
<h1>{% trans %}You have successfully logged out{% endtrans %}</h1>
77
{% if have_federated_login_methods %}

‎askbot/jinja2/authopenid/recover_account.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "one_column_body.html" %}
22
{% block title %}{% trans %}Recover account{% endtrans %}{% endblock %}
3-
{% block page_class %}account-recovery-page{% endblock %}
3+
{% block layout_class %}account-recovery-page{% endblock %}
44
{% block content %}
55
<h1 class="section-title">
66
{% if message %}

‎askbot/jinja2/flatpages/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "one_column_body.html" %}
22
{% block title %}{{ flatpage.title }}{% endblock %}
3-
{% block page_class %}flat-page{% endblock %}
3+
{% block layout_class %}flat-page{% endblock %}
44
{% block content %}
55
<h1>{{ flatpage.title }}</h1>
66
{{ flatpage.content }}

‎askbot/jinja2/list_suggested_tags.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{% import "macros.html" as macros %}
33
<!-- tags.html -->
44
{% block title %}{{ page_title }}{% endblock %}
5-
{% block page_class %}moderated-tags-page{% endblock %}
5+
{% block layout_class %}moderated-tags-page{% endblock %}
66
{% block content %}
77
{% include "tags/header.html" %}
88
{% if tags %}

0 commit comments

Comments
 (0)
Please sign in to comment.