A fork of hyde, the static site generation. Some patches will be pushed upstream.
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.
 
 
 

53 lines
1.9 KiB

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <link href="http://fonts.googleapis.com/css?family=Anton" rel="stylesheet" type="text/css">
  5. <title>Hyde Starter Kit {{ resource.meta.title_ending }}</title>
  6. <meta charset="utf-8" />
  7. <link rel="stylesheet" href="{{ media_url('css/style.css') }}">
  8. <!--[if lt IE 9]>
  9. <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
  10. </script>
  11. <![endif]-->
  12. </head>
  13. <body>
  14. <header>
  15. <hgroup>
  16. <h1><span>Hyde</span> Starter Kit</h1>
  17. <h2>Know your tool</h2>
  18. </hgroup>
  19. </header>
  20. <nav>
  21. {# Move main menu rendering away from the base layout. This
  22. way it can be used to generate the list many times, in
  23. a footer, etc.
  24. #}
  25. {% import "macros.j2" as macros with context %}
  26. {{ macros.render_main_menu() }}
  27. </nav>
  28. <article id="content">
  29. {# Main content block. Notice it has to pass through the
  30. Markdown filter to generate HTML. If a block in content
  31. pages contains only markup, you can omit the filter.
  32. #}
  33. {% filter markdown -%}
  34. {% block content %}{% endblock %}
  35. {%- endfilter %}
  36. </article>
  37. <aside>
  38. <p>Created by <a href="{{ author.url}}">{{ author.name}}</a>
  39. for <a href="{{ project.url }}">{{ project.name }}</a></p>
  40. </aside>
  41. {# Some parts of the web are not needed for development and can
  42. wait for production (ex. analytics). They can be included in
  43. the final production build. Create a new config file, extend
  44. the original one and override the "mode" property; then build
  45. the site with the new "production configuration".
  46. #}
  47. {% if site.config.mode == "production" -%}
  48. {% include "ga.j2" %}
  49. {%- endif %}
  50. </body>
  51. </html>