Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

problems.html.twig 1.3 KiB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <title>Grav Problems</title>
  6. <meta name="description" content="Grav is an easy to use, yet powerful, open source flat-file CMS">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <link rel="stylesheet" href="{{ problems_url }}/css/spectre.min.css" type="text/css" />
  9. <link rel="stylesheet" href="{{ problems_url }}/css/spectre-icons.min.css" type="text/css" />
  10. </head>
  11. <body>
  12. <div class="container grid-md">
  13. <div class="columns">
  14. <div class="column">
  15. <div class="text-center">
  16. <img class="logo" src="{{ problems_url }}/assets/grav-logo.svg" />
  17. <p class="reload toast toast-primary">
  18. Please <strong>Review</strong> and <strong>Resolve</strong> before continuing <a href="{{ base_url }}" class="btn btn-primary"><i class="icon icon-refresh"></i> Reload Page</a>
  19. </p>
  20. </div>
  21. {% include 'reports/problems-report.html.twig' %}
  22. <p class="footer text-center">
  23. <a href="http://getgrav.org">Grav</a> was <img src="{{ problems_url }}/assets/code-3.svg" /> with <img class="love" src="{{ problems_url }}/assets/heart.svg" /> by <a href="https://trilby.media">Trilby Media</a>.
  24. </p>
  25. </div>
  26. </div>
  27. </div>
  28. </body>
  29. </html>