20 lines
502 B
HTML
20 lines
502 B
HTML
<section class="section">
|
|
<div class="container has-text-centered">
|
|
<p>{{ .Site.Copyright | safeHTML }}</p>
|
|
{{if .Site.Params.Info.poweredby}}
|
|
<p>Powered by <a href="https://gohugo.io/">Hugo</a> & <a href="https://github.com/ribice/kiss">Kiss</a>.</p>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
{{ partial "add-mathjax-to-page.html" . }}
|
|
</footer>
|
|
<script type="text/x-mathjax-config">
|
|
MathJax.Hub.Config({
|
|
tex2jax: {
|
|
inlineMath: [['$','$']]
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|