diff options
Diffstat (limited to 'public/install/view/template/error/not_found.twig')
-rw-r--r-- | public/install/view/template/error/not_found.twig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/public/install/view/template/error/not_found.twig b/public/install/view/template/error/not_found.twig new file mode 100644 index 0000000..45524fe --- /dev/null +++ b/public/install/view/template/error/not_found.twig @@ -0,0 +1,25 @@ +{{ header }} +<div class="container"> + <ul class="breadcrumb"> + {% for breadcrumb in breadcrumbs %} + <li><a href="{{ breadcrumb.href }}">{{ breadcrumb.text }}</a></li> + {% endfor %} + </ul> + <div class="row">{{ column_left }} + {% if column_left and column_right %} + {% set class = 'col-sm-6' %} + {% elseif column_left or column_right %} + {% set class = 'col-sm-9' %} + {% else %} + {% set class = 'col-sm-12' %} + {% endif %} + <div id="content" class="{{ class }}">{{ content_top }} + <h1>{{ heading_title }}</h1> + <p>{{ text_error }}</p> + <div class="buttons"> + <div class="pull-right"><a href="{{ continue }}" class="btn btn-primary">{{ button_continue }}</a></div> + </div> + {{ content_bottom }}</div> + {{ column_right }}</div> +</div> +{{ footer }}
\ No newline at end of file |