hugo/docs/layouts/partials/footer.html
digitalcraftsman b47652fb29 Docs: add panel showing the last revision of a page
The panel also contains the version of the
documentation.
2016-01-07 04:23:26 -07:00

40 lines
1.4 KiB
HTML

<div class="row">
<div class="footer-panel">
<p>Last revision: {{ .Lastmod.Format "January 2, 2006" }}
<span style="float: right;">Hugo v{{ .Hugo.Version }} documentation</span>
</p>
</div>
</div>
</div>
</section>
</div>
<div class="col-md-1">
{{ if .IsPage }}
{{ with .GetParam "next" }}
<a class="navigation next" href="{{.}}">
<i class="fa fa-angle-right"> </i>
</a>
{{ end }}
{{ end }}
</div>
</div>
<!-- page start-->
</section>
</section>
<!--main content end-->
</section>
<!-- container section end -->
<!-- javascripts -->
<script src="/js/jquery-2.1.4.min.js"></script>
<script src="/js/jquery.scrollTo.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<!--custom script for all page-->
<script src="/js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="/js/scripts.js"></script>
{{ template "partials/analytics.html" . }}
</body>
</html>