default.html 4.8 KB

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