gitea源码

404.tmpl 673B

123456789101112131415161718
  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">
  5. {{template "base/alert" .}}
  6. <div class="status-page-error">
  7. <div class="status-page-error-title">404 Not Found</div>
  8. <div class="tw-text-center">
  9. <div class="tw-my-4">{{if .NotFoundPrompt}}{{.NotFoundPrompt}}{{else}}{{ctx.Locale.Tr "error404"}}{{end}}</div>
  10. {{if .NotFoundGoBackURL}}
  11. <a class="tw-block tw-my-4" href="{{.NotFoundGoBackURL}}">{{ctx.Locale.Tr "go_back"}}</a>
  12. {{end}}
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. {{template "base/footer" .}}