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.

80 lines
3.3KB

  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 href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
  11. <link rel="stylesheet" href="{{ get_url(path="site.css", cachebust=true) }}"/>
  12. </head>
  13. <body>
  14. <header>
  15. <nav class="container">
  16. <a class="header__logo" href="{{ config.base_url }}">Gutenberg</a>
  17. <a href="/documentation" class="nav-link">Docs</a>
  18. <a href="https://github.com/Keats/gutenberg" class="nav-link">Github</a>
  19. </nav>
  20. </header>
  21. <div class="content {% block extra_content_class %}{% endblock extra_content_class %}">
  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="/documentation" class="button">Get started</a>
  29. </div>
  30. <div class="selling-points">
  31. <div class="selling-points__content container">
  32. <div class="selling-point">
  33. <h2>Everything built-in</h2>
  34. <p>
  35. Gutenberg comes with Sass compilation, syntax highlighting and
  36. other features that usually require using additional tools
  37. or use JavaScript libraries on your site.
  38. </p>
  39. </div>
  40. <div class="selling-point">
  41. <h2>Fast</h2>
  42. <p>
  43. Your site will be generated in milliseconds, not seconds.
  44. That includes Sass compilation and syntax highlighting.
  45. </p>
  46. </div>
  47. <div class="selling-point">
  48. <h2>Flexible</h2>
  49. <p>
  50. You can build anything you want with Gutenberg: blogs, landing pages, knowledge bases...
  51. </p>
  52. </div>
  53. <div class="selling-point">
  54. <h2>Easy to use</h2>
  55. <p>
  56. Gutenberg gets out of your way so you can focus on what
  57. you are actually making.
  58. </p>
  59. </div>
  60. </div>
  61. </div>
  62. {% endblock content %}
  63. </div>
  64. <footer>
  65. <div class="container">
  66. © 2017 Vincent Prouillet
  67. </div>
  68. </footer>
  69. </body>
  70. </html>