mirror of https://github.com/writeas/writefreely
A focused writing and publishing space.
https://write.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
907 B
35 lines
907 B
{{define "footer"}}
|
|
{{template "foot" .}}
|
|
{{template "body-end" .}}
|
|
{{end}}
|
|
{{define "foot"}}
|
|
</div>
|
|
<footer>
|
|
<hr />
|
|
<nav>
|
|
<a class="home" href="/">{{.SiteName}}</a>
|
|
<a href="/about">about</a>
|
|
<a href="https://writefreely.org/guide" target="guide">writer's guide</a>
|
|
<a href="/privacy">privacy</a>
|
|
<a href="https://writefreely.org">writefreely {{.Version}}</a>
|
|
</nav>
|
|
</footer>
|
|
|
|
<script type="text/javascript">
|
|
try { // Google Fonts
|
|
WebFontConfig = {
|
|
custom: { families: [ 'Lora:400,700:latin' ], urls: [ '/css/fonts.css' ] }
|
|
};
|
|
(function() {
|
|
var wf = document.createElement('script');
|
|
wf.src = '/js/webfont.js';
|
|
wf.type = 'text/javascript';
|
|
wf.async = 'true';
|
|
var s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(wf, s);
|
|
})();
|
|
} catch (e) { /* ¯\_(ツ)_/¯ */ }
|
|
</script>
|
|
{{end}}
|
|
{{define "body-end"}}</body>
|
|
</html>{{end}}
|
|
|