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
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -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>