default.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>{{ page.title }}</title>
  7. {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %}
  8. <meta name="author" content="{{ site.author.name }}">
  9. <!-- Enable responsive viewport -->
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <!-- Bootstrap styles -->
  12. <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  13. <!-- Optional theme -->
  14. <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap-theme.min.css" rel="stylesheet">
  15. <!-- Sticky Footer -->
  16. <link href="{{ ASSET_PATH }}/bootstrap/css/bs-sticky-footer.css" rel="stylesheet">
  17. <!-- Custom styles and fonts -->
  18. <link href='http://fonts.googleapis.com/css?family=Roboto+Mono:400,100,300,500,700' rel='stylesheet' type='text/css'>
  19. <link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
  20. <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css" media="all">
  21. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  22. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  23. <!--[if lt IE 9]>
  24. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  25. <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
  26. <![endif]-->
  27. <!-- Fav and touch icons -->
  28. <!-- Update these with your own images
  29. <link rel="shortcut icon" href="images/favicon.ico">
  30. <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
  31. <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
  32. <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
  33. -->
  34. </head>
  35. <body>
  36. <div id="wrap">
  37. <div class="container">
  38. {% include nav.html %}
  39. {% include header.html %}
  40. <div class="row">
  41. <div class="col-md-8 content">
  42. {{ content }}
  43. </div>
  44. <div class="col-md-4 sidebar">
  45. {% include sidebar.html %}
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. <div id="footer">
  51. <div class="container">
  52. <!-- {#% if page.url contains "/about/" %#} -->
  53. {% include footer.html %}
  54. <!-- {#% endif %#} -->
  55. </div>
  56. </div>
  57. {% include JB/analytics %}
  58. <!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not supported in IE8) -->
  59. <!-- Placed at the end of the document so the pages load faster -->
  60. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  61. <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
  62. </body>
  63. </html>