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.

42 lines
1.5KB

  1. <!DOCTYPE html>
  2. <html lang="en-gb">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <meta name="description" content="{% block description %}{{ config.description }}{% endblock description %}">
  8. <meta name="author" content="{{ config.extra.author }}">
  9. <title>{% block title %}{{ config.title }}{% endblock title %}</title>
  10. <link rel="stylesheet" href="{{ get_url(path="site.css", cachebust=true) }}"/>
  11. </head>
  12. <body>
  13. <header>
  14. <nav>
  15. <a class="header__logo" href="{{ config.base_url }}">Gutenberg</a>
  16. <a href="" class="nav-link">Docs</a>
  17. <a href="" class="nav-link">Themes</a>
  18. <a href="https://github.com/Keats/gutenberg" class="nav-link">Github</a>
  19. </nav>
  20. </header>
  21. <div class="content">
  22. {% block content %}
  23. <div class="hero">
  24. <h1>Your damn fast one-stop static site engine</h1>
  25. <p class="hero__tagline">
  26. Forget dependencies. Everything you need in one binary.
  27. </p>
  28. <a href="" class="button">Get started</a>
  29. </div>
  30. {% endblock content %}
  31. </div>
  32. <footer>
  33. <div class="container">
  34. © 2017 Vincent Prouillet
  35. </div>
  36. </footer>
  37. </body>
  38. </html>