default.html 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{{ page.title }}</title>
  6. {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
  7. <meta name="author" content="{{ site.author.name }}">
  8. <!-- Enable responsive viewport -->
  9. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  10. <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
  11. <!--[if lt IE 9]>
  12. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  13. <![endif]-->
  14. <!-- Le styles -->
  15. <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.css" rel="stylesheet">
  16. <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css">
  17. <link href="{{ ASSET_PATH }}/css/syntax.css" rel="stylesheet" type="text/css" media="screen" />
  18. <!-- Le fav and touch icons -->
  19. <!-- Update these with your own images
  20. <link rel="shortcut icon" href="images/favicon.ico">
  21. <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
  22. <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
  23. <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
  24. -->
  25. </head>
  26. <body>
  27. {% include themes/apache/_navigation.html %}
  28. <div class="container">
  29. {{ content }}
  30. <hr>
  31. <footer>
  32. <!-- <p>&copy; {{ site.time | date: '%Y' }} {{ site.author.name }}</p>-->
  33. {% include themes/apache/footer.html %}
  34. </footer>
  35. </div>
  36. <script src="{{ ASSET_PATH }}/jquery/jquery-2.1.1.min.js"></script>
  37. <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
  38. </body>
  39. </html>