Skip to content
Snippets Groups Projects
Commit 39f10a78 authored by Greg Wilson's avatar Greg Wilson
Browse files

Modifying page template so that main title links to home page.

If there is a subtitle, the main title links to the `index.html` home page.  If there is no subtitle, this *is* the home page, so there is no link.
parent 50aa8c1d
Branches
Tags
No related merge requests found
......@@ -11,8 +11,12 @@
$banner$
<div class="row">
<div class="col-md-10 col-md-offset-1">
$if(subtitle)$
<a href="index.html"><h1 class="title">$title$</h1></a>
<h2 class="subtitle">$subtitle$</h2>
$else$
<h1 class="title">$title$</h1>
$if(subtitle)$<h2 class="subtitle">$subtitle$</h2>$endif$
$endif$
$body$
</div>
</div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment