Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PrestaShop/autoupgrade
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c9fdd0bb5fcd2dcf155d1825ce9dcffa8419ae10
Choose a base ref
..
head repository: PrestaShop/autoupgrade
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cd94a2fda98021552d142e072d492f692b3f9cf5
Choose a head ref
Showing with 10 additions and 3 deletions.
  1. +10 −3 views/templates/pages/errors/404.html.twig
13 changes: 10 additions & 3 deletions views/templates/pages/errors/404.html.twig
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
{% extends "@ModuleAutoUpgrade/layouts/error.html.twig" %}

{% block description %}
<p class="error-page__desc">
{{ 'The page you requested cannot be found.'|trans({}) }}
</p>
<div class="error-page__desc">
<div class="error-page__desc-404">
<p>{{ 'The requested page or resource could not be found. This might be due to:'|trans({}) }}</p>
<ul>
<li>{{ 'A broken or outdated link.'|trans({}) }}</li>
<li>{{ 'The page being moved or deleted.'|trans({}) }}</li>
<li>{{ 'A typo in the URL.'|trans({}) }}</li>
</ul>
</div>
</div>
{% endblock %}