default.html 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>{{ page.title }}</title>
  6. {% if page.description %}
  7. <meta name="description" content="{{ page.description }}">
  8. {% endif %}
  9. <meta name="author" content="{{ site.author.name }}">
  10. <!-- Enable responsive viewport -->
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
  13. <!--[if lt IE 9]>
  14. <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  15. <![endif]-->
  16. <!-- Le styles -->
  17. <link href="{{ site.BASE_PATH }}/assets/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
  18. <link href="{{ site.BASE_PATH }}/assets/resources/font-awesome/css/font-awesome.min.css" rel="stylesheet">
  19. <link href="{{ site.BASE_PATH }}/assets/resources/syntax/syntax.css" rel="stylesheet">
  20. <link href="{{ site.BASE_PATH }}/assets/css/style.css" rel="stylesheet">
  21. <!-- Le fav and touch icons -->
  22. <!-- Update these with your own images
  23. <link rel="shortcut icon" href="images/favicon.ico">
  24. <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
  25. <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
  26. <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
  27. -->
  28. <link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="{{ site.BASE_PATH }}/feed.xml">
  29. <!--<script>
  30. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  31. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  32. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  33. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  34. ga('create', 'UA-53289013-1', 'auto');
  35. ga('send', 'pageview');
  36. </script>-->
  37. </head>
  38. <body>
  39. <nav class="navbar navbar-default visible-xs" role="navigation">
  40. <!-- Brand and toggle get grouped for better mobile display -->
  41. <div class="navbar-header">
  42. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
  43. <span class="sr-only">Toggle navigation</span>
  44. <span class="icon-bar"></span>
  45. <span class="icon-bar"></span>
  46. <span class="icon-bar"></span>
  47. </button>
  48. {% if site.github.fork %}
  49. <iframe src="http://ghbtns.com/github-btn.html?user={{ site.github.username }}&repo={{ site.github.repo }}&type=fork&count=true"
  50. allowtransparency="true" frameborder="0" scrolling="0" width="85" height="20" class="nav-link last"></iframe>
  51. {% endif %}
  52. {% if site.github.watch %}
  53. <iframe src="http://ghbtns.com/github-btn.html?user={{ site.github.username }}&repo={{ site.github.repo }}&type=watch&count=true"
  54. allowtransparency="true" frameborder="0" scrolling="0" width="85" height="20" class="nav-link"></iframe>
  55. {% endif %}
  56. <a class="navbar-brand" href="{{ site.BASE_PATH }}/">
  57. <img src="{{ site.BASE_PATH }}/assets/media/phantomjs-small.png" class="img-circle" />
  58. {{ site.title }}
  59. </a>
  60. </div>
  61. <!-- Collect the nav links, forms, and other content for toggling -->
  62. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  63. <ul class="nav navbar-nav">
  64. <li class="active"><a href="{{ site.BASE_PATH }}/">Home</a></li>
  65. <li><a href="{{ site.BASE_PATH}}/installation.html">Installation</a></li>
  66. <li><a href="{{ site.BASE_PATH}}/usage.html">Usage</a></li>
  67. <li><a href="{{ site.BASE_PATH}}/advanced.html">Advanced</a></li>
  68. <li><a href="{{ site.BASE_PATH}}/troubleshooting.html">Troubleshooting</a></li>
  69. </ul>
  70. </div><!-- /.navbar-collapse -->
  71. </nav>
  72. <!-- nav-menu-dropdown -->
  73. <div class="btn-group hidden-xs" id="nav-menu">
  74. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
  75. <i class="fa fa-bars"></i>
  76. </button>
  77. <ul class="dropdown-menu" role="menu">
  78. <li><a href="{{ site.BASE_PATH }}/"><i class="fa fa-home"></i>Home</a></li>
  79. <li><a href="{{ site.BASE_PATH}}/installation.html"><i class="fa fa-folder"></i>Installation</a></li>
  80. <li><a href="{{ site.BASE_PATH}}/usage.html"><i class="fa fa-folder"></i>Usage</a></li>
  81. <li><a href="{{ site.BASE_PATH}}/advanced.html"><i class="fa fa-folder"></i>Advanced</a></li>
  82. <li><a href="{{ site.BASE_PATH}}/troubleshooting.html"><i class="fa fa-folder"></i>Troubleshooting</a></li>
  83. <li class="divider"></li>
  84. <li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li>
  85. </ul>
  86. </div>
  87. <div class="col-sm-3 sidebar hidden-xs">
  88. {% include sidebar.html %}
  89. </div>
  90. <div class="col-sm-9 col-sm-offset-3">
  91. {{ content }}
  92. <footer>
  93. <hr/>
  94. <p>
  95. &copy; {{ site.time | date: '%Y' }} {{ site.title }}. Theme: Modified <a href="https://github.com/dbtek/dbyll">dbyll</a> by dbtek.
  96. </p>
  97. </footer>
  98. </div>
  99. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/jquery/jquery.min.js"></script>
  100. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/bootstrap/js/bootstrap.min.js"></script>
  101. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/js/app.js"></script>
  102. </body>
  103. </html>