Files
comfychan/web/views/404.templ
T

18 lines
429 B
Templ

package views
import "github.com/dominicf2001/comfychan/web/views/shared"
templ NotFound() {
@shared.Layout("404 - Comfychan") {
<div class="container not-found-container">
<div class="box">
<h2>404 not found.</h2>
<div>
<img id="notFoundImg" src="/static/media/404/1.jpg" alt="404 mascot"/>
</div>
<p><a class="link-button" href="javascript:history.back()">[Go back]</a></p>
</div>
</div>
}
}