* vspd: Fix invalid default config log level. slog.LevelDebug.String() returns "DBG" which is not valid per the config validation rules specified below. Hard-code "debug" instead. * Update year.
28 lines
1.0 KiB
HTML
28 lines
1.0 KiB
HTML
{{ define "footer" }}
|
|
|
|
</div> <!-- page-content -->
|
|
|
|
<footer class="row m-0">
|
|
<div class="col-md-8 col-12 d-flex justify-content-center align-items-center">
|
|
<p class="py-4 m-0">
|
|
<strong>Stats updated:</strong> {{ .WebApiCache.UpdateTime }}
|
|
<br />
|
|
<strong>Support:</strong> <a href="mailto:{{ .WebApiCfg.SupportEmail }}" rel="noopener noreferrer">{{ .WebApiCfg.SupportEmail }}</a>
|
|
<br />
|
|
<strong>VSP public key:</strong> <span class="code">{{ .WebApiCache.PubKey }}</span>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="col-md-4 col-12 footer__credit d-flex justify-content-center align-items-center">
|
|
<p class="py-4 m-0">
|
|
Decred Developers | 2020-2023
|
|
<br />
|
|
The source code is available on <a href="https://github.com/decred/vspd" target="_blank" rel="noopener noreferrer">GitHub</a>
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
{{ end }}
|