code.gitea.io/gitea@v1.22.3/templates/status/404.tmpl (about)

     1  {{template "base/head" .}}
     2  <div role="main" aria-label="{{.Title}}" class="page-content {{if .IsRepo}}repository{{end}}">
     3  	{{if .IsRepo}}{{template "repo/header" .}}{{end}}
     4  	<div class="ui container tw-text-center">
     5  		<img class="tw-max-w-[80vw] tw-py-16" src="{{AssetUrlPrefix}}/img/404.png" alt="404">
     6  		<p>{{if .NotFoundPrompt}}{{.NotFoundPrompt}}{{else}}{{ctx.Locale.Tr "error404"}}{{end}}</p>
     7  		{{if .NotFoundGoBackURL}}<a class="ui button" href="{{.NotFoundGoBackURL}}">{{ctx.Locale.Tr "go_back"}}</a>{{end}}
     8  	</div>
     9  </div>
    10  {{template "base/footer" .}}