aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2020-04-15 13:30:13 +0300
committerGravatar Vitaly Takmazov2020-04-15 13:30:13 +0300
commit709098c0a6a40a88093128669487cbb459757cfc (patch)
tree24f18692d2663d8c479bcac26adb6cf42eca2afe /src
parent65dd166f45af9248c65fe4fc1cbac31791d4b4eb (diff)
Move ads out of noindex blocks
Diffstat (limited to 'src')
-rw-r--r--src/main/resources/templates/views/blog.html6
-rw-r--r--src/main/resources/templates/views/index.html6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/main/resources/templates/views/blog.html b/src/main/resources/templates/views/blog.html
index 79a1efe8..4e390364 100644
--- a/src/main/resources/templates/views/blog.html
+++ b/src/main/resources/templates/views/blog.html
@@ -15,10 +15,10 @@
{% if nextpage | default('') is not empty %}
<p class="page"><a href="{{ nextpage | raw }}" rel="prev">{{ i18n("messages","messages.next") }} →</a></p>
{% endif %}
-{% endblock %}
-{% block "column" %}
-{% include "views/partial/usercolumn" %}
{% if noindex %}
<!--/noindex-->
{% endif %}
+{% endblock %}
+{% block "column" %}
+{% include "views/partial/usercolumn" %}
{% endblock %} \ No newline at end of file
diff --git a/src/main/resources/templates/views/index.html b/src/main/resources/templates/views/index.html
index 97d726de..e85a3aa1 100644
--- a/src/main/resources/templates/views/index.html
+++ b/src/main/resources/templates/views/index.html
@@ -10,6 +10,9 @@
{% if nextpage | default('') is not empty %}
<p class="page"><a href="{{ nextpage | raw }}" rel="prev">{{ i18n("messages","messages.next") }} →</a></p>
{% endif %}
+{% if noindex %}
+<!--/noindex-->
+{% endif %}
{% endblock %}
{% block "column" %}
{% if tag | default('') is not empty %}
@@ -23,7 +26,4 @@
{% else %}
{% include "views/partial/homecolumn" %}
{% endif %}
-{% if noindex %}
-<!--/noindex-->
-{% endif %}
{% endblock %}