mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 13:18:13 -05:00
22 lines
857 B
HTML
Vendored
22 lines
857 B
HTML
Vendored
{{define "common/footer"}}
|
|
<div class="ui inverted vertical footer segment">
|
|
<div class="ui center aligned is-size-7 container">
|
|
<b>© <a style="color: white;" href="/">{{.Conf.Site.Brand}}</a></b> | <small>Powered by <a
|
|
href="https://github.com/naiba/nezha" style="color: white;" target="_blank">{{tr "NezhaMonitoring"}}</a>
|
|
{{.Version}}</small>
|
|
</div>
|
|
</div>
|
|
<script src="https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js"></script>
|
|
<script src="https://cdn.staticfile.org/semantic-ui/2.4.1/semantic.min.js"></script>
|
|
<script src="/static/semantic-ui-alerts.min.js"></script>
|
|
<script src="https://cdn.staticfile.org/vue/2.6.14/vue.min.js"></script>
|
|
<script src="/static/main.js?v20220518"></script>
|
|
<script>
|
|
(function () {
|
|
updateLang({{.LANG }});
|
|
})();
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|
|
{{end}} |