Skip to content
This repository has been archived by the owner on Oct 23, 2020. It is now read-only.

Commit

Permalink
Merge pull request #142 from maximebiloe/fix-restricted-tpl
Browse files Browse the repository at this point in the history
Fix undefined variables in restricted-country.tpl
  • Loading branch information
Maxime Biloé authored Oct 31, 2016
2 parents 2d82fc5 + b04fc80 commit 992f648
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/errors/restricted-country.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

{block name='page_header_container'}
<header class="page-header">
<div class="logo"><img src="{$shop.logo}" alt="logo"></div>
{block name='page_header'}
<h1>{block name='page_title'}{$shop_name}{/block}</h1>
<h1>{block name='page_title'}{$shop.name}{/block}</h1>
{/block}
</header>
{/block}
Expand All @@ -16,7 +17,6 @@
<section id="content" class="page-content page-restricted">
{block name='page_content'}
<h2>{l s='403 Forbidden'}</h2>
<div class="logo"><img src="{$logo_url}" alt="logo"></div>
<p>{l s='You cannot access this store from your country. We apologize for the inconvenience.'}</p>
{/block}
</section>
Expand Down

0 comments on commit 992f648

Please sign in to comment.