-
Notifications
You must be signed in to change notification settings - Fork 6
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
942cb53
commit 4daa8a5
Showing
1 changed file
with
12 additions
and
11 deletions.
There are no files selected for viewing
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,11 +1,12 @@ | ||
<?php namespace BNETDocs\Templates; $title = "Soft Redirect"; ?> | ||
<?php require("./header.inc.phtml"); ?> | ||
<article> | ||
<header><?=$title?></header> | ||
<section> | ||
Location has moved, please follow this link:<br/> | ||
<br/> | ||
<a href="<?=$this->getContext()->location?>"><?=$this->getContext()->location?></a><br/> | ||
</section> | ||
</article> | ||
<?php require("./footer.inc.phtml"); ?> | ||
<?php /* vim: set colorcolumn= expandtab shiftwidth=2 softtabstop=2 tabstop=4 smarttab: */ | ||
namespace BNETDocs\Templates; | ||
$title = 'Soft Redirect'; | ||
require('./header.inc.phtml'); ?> | ||
<div class="container"> | ||
<h1><?=$title?></h1> | ||
<div class="alert alert-warning"> | ||
<p>Location has moved, please follow this link:</p> | ||
<p><a href="<?=$this->getContext()->location?>"><?=$this->getContext()->location?></a></p> | ||
</div> | ||
</div> | ||
<? require('./footer.inc.phtml'); ?> |