1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-20 01:45:59 -04:00
gitea/templates/base/footer.tmpl

19 lines
476 B
Cheetah
Raw Normal View History

2014-03-03 09:40:22 -05:00
<script>
$(function(){
2014-03-10 09:12:49 -04:00
initCore();{{if .PageIsSignUp}}
initRegister();{{end}}{{if .PageIsUserSetting}}
initUserSetting();{{end}}
2014-03-03 09:40:22 -05:00
});
</script>
2014-03-15 08:40:26 -04:00
<div class="wrapper-push"></div>
</div>
<footer id="footer">
<div class="container footer-wrap">
<p>
2014-03-15 09:17:16 -04: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 08:40:26 -04:00
</p>
<p class="desc"></p>
</div>
</footer>
2014-03-03 09:40:22 -05:00
</body>
2014-02-17 18:38:50 -05:00
</html>