default.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
  19. <link href="{{ ASSET_PATH }}css/style.css?body=1" rel="stylesheet" type="text/css" media="all">
  20. <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
  21. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  22. <!--[if lt IE 9]>
  23. <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
  24. <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
  25. <![endif]-->
  26. <!-- Fav and touch icons -->
  27. <!-- Update these with your own images
  28. <link rel="shortcut icon" href="{{ ASSET_PATH }}/images/favicon.ico">
  29. <link rel="apple-touch-icon" href="{{ ASSET_PATH }}/images/apple-touch-icon.png">
  30. <link rel="apple-touch-icon" sizes="72x72" href="{{ ASSET_PATH }}/images/apple-touch-icon-72x72.png">
  31. <link rel="apple-touch-icon" sizes="114x114" href="{{ ASSET_PATH }}/images/apple-touch-icon-114x114.png">
  32. -->
  33. </head>
  34. <body>
  35. <div id="wrap">
  36. <div class="container">
  37. {% include nav.html %}
  38. {% include header.html %}
  39. <div class="row">
  40. <div class="col-md-8 content">
  41. {{ content }}
  42. </div>
  43. <div class="col-md-4 sidebar">
  44. {% include sidebar.html %}
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. <div id="footer">
  50. <div class="container">
  51. {% include footer.html %}
  52. </div>
  53. </div>
  54. {% include JB/analytics %}
  55. <!-- Latest compiled and minified JavaScript, requires jQuery 1.x (2.x not supported in IE8) -->
  56. <!-- Placed at the end of the document so the pages load faster -->
  57. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  58. <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script>
  59. <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
  60. </body>
  61. </html>