You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.4KB

  1. <html>
  2. <head>
  3. <title>Zola</title>
  4. </head>
  5. <body>
  6. <div class="container">
  7. <h1>Welcome to Zola!</h1>
  8. <p>
  9. You're seeing this page because we couldn't find a template to render.
  10. </p>
  11. <p>
  12. To modify this page, create a <b>{{filename}}</b> file in the templates directory or
  13. <a href="https://www.getzola.org/documentation/themes/installing-and-using-themes/" target="_blank">install a theme</a>.
  14. <br>
  15. You can find what variables are available in this template in the <a href="{{url}}" target="_blank">documentation</a>.
  16. </p>
  17. </div>
  18. <footer>
  19. <a href="https://www.getzola.org/documentation/getting-started/cli-usage/" target="_blank">Get started with Zola</a>
  20. </footer>
  21. <style>
  22. html {
  23. line-height: 1.5;
  24. }
  25. h1 {
  26. margin-bottom: 2rem;
  27. }
  28. .container {
  29. font-family: "sans-serif";
  30. text-align: center;
  31. margin-top: 20vh;
  32. padding: 2rem;
  33. background: #e9e9e9;
  34. }
  35. footer {
  36. position: fixed;
  37. width: 100%;
  38. bottom: 1rem;
  39. text-align: center;
  40. }
  41. </style>
  42. </body>
  43. </html>