27 lines
526 B
HTML
27 lines
526 B
HTML
<!--
|
|
This is the main footer for the website. It is included on every page.
|
|
|
|
It is very basic. It has some text and a link back to the home page of the
|
|
site.
|
|
|
|
It includes the google analytics template from /layouts/chrome/ga.html
|
|
|
|
It also closes the <body> and <html> tags for each page.
|
|
-->
|
|
|
|
<div class="container content">
|
|
<footer>
|
|
<div>
|
|
<p class="right credit">
|
|
Fancy footer here. Link to <a href="/">Home Page</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
|
|
<!--
|
|
{{ partial "ga.html" . }}
|
|
-->
|
|
|
|
</body>
|
|
</html>
|