404_html_file.go 326 B

123456789101112
  1. package template
  2. var Var404HtmlFile = []byte(`{{template "header.html" .}}
  3. <div class="card mb-4">
  4. <div class="card-body">
  5. <h2 class="card-title">Error 404</h2>
  6. <div class="page-content">
  7. The page what you looking for "<b>{{$.Data.RequestURL}}</b>" is not found
  8. </div>
  9. </div>
  10. </div>
  11. {{template "footer.html" .}}`)