Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion templates/404.twig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@

{% extends layout %}

{% block head_scripts %}
{{ parent() }}

<meta name="robots" content="noindex">
<meta name="robots" content="nofollow">
{% endblock %}

{% set breadcrumbs = [entry] %}

{% block content %}
Expand Down Expand Up @@ -43,4 +50,4 @@
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({'event': '404_page_not_found'});
</script>
{% endblock %}
{% endblock %}
7 changes: 7 additions & 0 deletions templates/503.twig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@

{% extends layout %}

{% block head_scripts %}
{{ parent() }}

<meta name="robots" content="noindex">
<meta name="robots" content="nofollow">
{% endblock %}

{% set breadcrumbs = [entry] %}

{% block content %}
Expand Down