2024-07-10 04:21:22 +00:00
|
|
|
package components
|
|
|
|
|
|
|
|
import c "git.ekzyis.com/ekzyis/delphi.market/server/router/context"
|
|
|
|
|
|
|
|
templ Footer() {
|
2024-07-11 00:59:29 +00:00
|
|
|
<footer class="flex justify-center my-3">
|
2024-07-10 04:21:22 +00:00
|
|
|
<div>
|
|
|
|
<hr/>
|
|
|
|
<small>
|
|
|
|
<code>
|
|
|
|
running
|
|
|
|
<a
|
|
|
|
href={ templ.SafeURL("https://github.com/ekzyis/delphi.market/commit/" + ctx.Value(c.CommitContextKey).(string)) }
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>{ ctx.Value(c.CommitContextKey).(string) }</a>
|
|
|
|
</code>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
}
|