| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>{{ page.title }}</title>
- {% if page.description %}
- <meta name="description" content="{{ page.description }}">
- {% endif %}
- <meta name="author" content="{{ site.author.name }}">
- <!-- Enable responsive viewport -->
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
- <!--[if lt IE 9]>
- <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
- <![endif]-->
- <!-- Le styles -->
- <link href="{{ site.BASE_PATH }}/assets/resources/bootstrap/css/bootstrap.min.css" rel="stylesheet">
- <link href="{{ site.BASE_PATH }}/assets/resources/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="{{ site.BASE_PATH }}/assets/resources/syntax/syntax.css" rel="stylesheet">
- <link href="{{ site.BASE_PATH }}/assets/css/style.css" rel="stylesheet">
- <!-- Le fav and touch icons -->
- <!-- Update these with your own images
- <link rel="shortcut icon" href="images/favicon.ico">
- <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
- <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
- <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
- -->
- <link rel="alternate" type="application/rss+xml" title="{{ site.name }}" href="{{ site.BASE_PATH }}/feed.xml">
- </head>
- <body>
- <nav class="navbar navbar-default visible-xs" role="navigation">
- <!-- Brand and toggle get grouped for better mobile display -->
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
-
- <!--
- {% if site.author.github %}
- <a type="button" class="navbar-toggle nav-link" href="http://github.com/{{ site.author.github }}">
- <i class="fa fa-github"></i>
- </a>
- {% endif %}
- {% if site.author.twitter %}
- <a type="button" class="navbar-toggle nav-link" href="http://twitter.com/{{ site.author.twitter }}">
- <i class="fa fa-twitter"></i>
- </a>
- {% endif %}
- {% if site.author.email %}
- <a type="button" class="navbar-toggle nav-link" href="mailto:{{ site.author.email }}">
- <i class="fa fa-envelope"></i>
- </a>
- {% endif %}
-
- -->
-
- <a class="navbar-brand" href="{{ site.BASE_PATH }}/">
- <img src="{{ site.url }}/assets/media/phantomjs-small.png" class="img-circle" />
- {{ site.title }}
- </a>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
- <ul class="nav navbar-nav">
- <li class="active"><a href="{{ site.BASE_PATH }}/">Home</a></li>
- <li><a href="{{ site.BASE_PATH}}/installation.html">Installation</a></li>
- <li><a href="{{ site.BASE_PATH}}/usage.html">Usage</a></li>
- <li><a href="{{ site.BASE_PATH}}/advanced.html">Advanced</a></li>
- <li><a href="{{ site.BASE_PATH}}/debugging.html">Debugging</a></li>
- <li><a href="{{ site.BASE_PATH}}/troubleshooting.html">Troubleshooting</a></li>
- </ul>
- </div><!-- /.navbar-collapse -->
- </nav>
- <!-- nav-menu-dropdown -->
- <div class="btn-group hidden-xs" id="nav-menu">
- <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
- <i class="fa fa-bars"></i>
- </button>
- <ul class="dropdown-menu" role="menu">
- <li><a href="{{ site.BASE_PATH }}/"><i class="fa fa-home"></i>Home</a></li>
- <li><a href="{{ site.BASE_PATH}}/installation.html"><i class="fa fa-folder"></i>Installation</a></li>
- <li><a href="{{ site.BASE_PATH}}/usage.html"><i class="fa fa-folder"></i>Usage</a></li>
- <li><a href="{{ site.BASE_PATH}}/advanced.html"><i class="fa fa-folder"></i>Advanced</a></li>
- <li><a href="{{ site.BASE_PATH}}/debugging.html"><i class="fa fa-folder"></i>Debugging</a></li>
- <li><a href="{{ site.BASE_PATH}}/troubleshooting.html"><i class="fa fa-folder"></i>Troubleshooting</a></li>
- <li class="divider"></li>
- <li><a href="#"><i class="fa fa-arrow-up"></i>Top of Page</a></li>
- </ul>
- </div>
- <div class="col-sm-3 sidebar hidden-xs">
- {% include sidebar.html %}
- </div>
- <div class="col-sm-9 col-sm-offset-3">
- {{ content }}
- <footer>
- <hr/>
- <p>
- © {{ site.time | date: '%Y' }} {{ site.title }}. Theme: Modified <a href="https://github.com/dbtek/dbyll">dbyll</a> by dbtek.
- </p>
- </footer>
- </div>
- <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/jquery/jquery.min.js"></script>
- <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/resources/bootstrap/js/bootstrap.min.js"></script>
- <script type="text/javascript" src="{{ site.BASE_PATH }}/assets/js/app.js"></script>
- </body>
- </html>
|