Skip to content

Commit

Permalink
Next pass at bootstrap conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
carlbennett committed Jul 2, 2021
1 parent 942cb53 commit 4daa8a5
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/templates/RedirectSoft.phtml
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'); ?>

0 comments on commit 4daa8a5

Please sign in to comment.