gitea/templates/base/footer.tmpl

19 lines
476 B
Cheetah
Raw Normal View History

2014-03-03 15:40:22 +01:00
<script>
$(function(){
2014-03-10 14:12:49 +01:00
initCore();{{if .PageIsSignUp}}
initRegister();{{end}}{{if .PageIsUserSetting}}
initUserSetting();{{end}}
2014-03-03 15:40:22 +01:00
});
</script>
2014-03-15 13:40:26 +01:00
<div class="wrapper-push"></div>
</div>
<footer id="footer">
<div class="container footer-wrap">
<p>
2014-03-15 14:17:16 +01:00
© 2014 Gogs · ver {{AppVer}} · <i class="fa fa-github"></i><a target="_blank" href="https://github.com/gogits/gogs">GitHub</a>
2014-03-15 13:40:26 +01:00
</p>
<p class="desc"></p>
</div>
</footer>
2014-03-03 15:40:22 +01:00
</body>
2014-02-18 00:38:50 +01:00
</html>