default.html 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. <!--
  49. {% if site.author.github %}
  50. <a type="button" class="navbar-toggle nav-link" href="http://github.com/{{ site.author.github }}">
  51. <i class="fa fa-github"></i>
  52. </a>
  53. {% endif %}
  54. {% if site.author.twitter %}
  55. <a type="button" class="navbar-toggle nav-link" href="http://twitter.com/{{ site.author.twitter }}">
  56. <i class="fa fa-twitter"></i>
  57. </a>
  58. {% endif %}
  59. {% if site.author.email %}
  60. <a type="button" class="navbar-toggle nav-link" href="mailto:{{ site.author.email }}">
  61. <i class="fa fa-envelope"></i>
  62. </a>
  63. {% endif %}
  64. -->
  65. <a class="navbar-brand" href="{{ site.BASE_PATH }}/">
  66. <img src="{{ site.BASE_PATH }}/assets/media/phantomjs-small.png" class="img-circle" />
  67. {{ site.title }}
  68. </a>
  69. </div>
  70. <!-- Collect the nav links, forms, and other content for toggling -->
  71. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  72. <ul class="nav navbar-nav">
  73. <li class="active"><a href="{{ site.BASE_PATH }}/">Home</a></li>
  74. <li><a href="{{ site.BASE_PATH}}/installation.html">Installation</a></li>
  75. <li><a href="{{ site.BASE_PATH}}/usage.html">Usage</a></li>
  76. <li><a href="{{ site.BASE_PATH}}/advanced.html">Advanced</a></li>
  77. <li><a href="{{ site.BASE_PATH}}/debugging.html">Debugging</a></li>
  78. <li><a href="{{ site.BASE_PATH}}/troubleshooting.html">Troubleshooting</a></li>
  79. </ul>
  80. </div><!-- /.navbar-collapse -->
  81. </nav>
  82. <!-- nav-menu-dropdown -->
  83. <div class="btn-group hidden-xs" id="nav-menu">
  84. <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
  85. <i class="fa fa-bars"></i>
  86. </button>
  87. <ul class="dropdown-menu" role="menu">
  88. <li><a href="{{ site.BASE_PATH }}/"><i class="fa fa-home"></i>Home</a></li>
  89. <li><a href="{{ site.BASE_PATH}}/installation.html"><i class="fa fa-folder"></i>Installation</a></li>
  90. <li><a href="{{ site.BASE_PATH}}/usage.html"><i class="fa fa-folder"></i>Usage</a></li>
  91. <li><a href="{{ site.BASE_PATH}}/advanced.html"><i class="fa fa-folder"></i>Advanced</a></li>
  92. <li><a href="{{ site.BASE_PATH}}/debugging.html"><i class="fa fa-folder"></i>Debugging</a></li>
  93. <li><a href="{{ site.BASE_PATH}}/troubleshooting.html"><i class="fa fa-folder"></i>Troubleshooting</a></li>
  94. <li class="divider"></li>
  95. <li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li>
  96. </ul>
  97. </div>
  98. <div class="col-sm-3 sidebar hidden-xs">
  99. {% include sidebar.html %}
  100. </div>
  101. <div class="col-sm-9 col-sm-offset-3">
  102. {{ content }}
  103. <footer>
  104. <hr/>
  105. <p>
  106. &copy; {{ site.time | date: '%Y' }} {{ site.title }}. Theme: Modified <a href="https://github.com/dbtek/dbyll">dbyll</a> by dbtek.
  107. </p>
  108. </footer>
  109. </div>
  110. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/jquery/jquery.min.js"></script>
  111. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/bootstrap/js/bootstrap.min.js"></script>
  112. <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/js/app.js"></script>
  113. </body>
  114. </html>