-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
856be87
commit a14db73
Showing
1 changed file
with
25 additions
and
23 deletions.
There are no files selected for viewing
48 changes: 25 additions & 23 deletions
48
upload/catalog/view/theme/default/template/extension/payment/paypal/failure.twig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
{{ header }} | ||
<div id="payment-paypal" 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>{{ text_title }}</h1> | ||
{{ text_message }} | ||
<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> | ||
<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>{{ text_title }}</h1> | ||
{{ text_message }} | ||
<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 }} |