Skip to content

Commit 4daa8a5

Browse files
committed
Next pass at bootstrap conversion
1 parent 942cb53 commit 4daa8a5

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

src/templates/RedirectSoft.phtml

+12-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
<?php namespace BNETDocs\Templates; $title = "Soft Redirect"; ?>
2-
<?php require("./header.inc.phtml"); ?>
3-
<article>
4-
<header><?=$title?></header>
5-
<section>
6-
Location has moved, please follow this link:<br/>
7-
<br/>
8-
<a href="<?=$this->getContext()->location?>"><?=$this->getContext()->location?></a><br/>
9-
</section>
10-
</article>
11-
<?php require("./footer.inc.phtml"); ?>
1+
<?php /* vim: set colorcolumn= expandtab shiftwidth=2 softtabstop=2 tabstop=4 smarttab: */
2+
namespace BNETDocs\Templates;
3+
$title = 'Soft Redirect';
4+
require('./header.inc.phtml'); ?>
5+
<div class="container">
6+
<h1><?=$title?></h1>
7+
<div class="alert alert-warning">
8+
<p>Location has moved, please follow this link:</p>
9+
<p><a href="<?=$this->getContext()->location?>"><?=$this->getContext()->location?></a></p>
10+
</div>
11+
</div>
12+
<? require('./footer.inc.phtml'); ?>

0 commit comments

Comments
 (0)