mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2024-12-26 17:50:55 +08:00
62 lines
No EOL
2.8 KiB
HTML
62 lines
No EOL
2.8 KiB
HTML
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
|
|
crossorigin="anonymous">
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r"
|
|
crossorigin="anonymous">
|
|
<script src="https://code.jquery.com/jquery-2.1.4.min.js" integrity="sha384-R4/ztc4ZlRqWjqIuvf6RX5yb/v90qNGx6fS48N0tRxiGkqveZETq72KgDVJCp2TC"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
|
|
crossorigin="anonymous"></script>
|
|
<script src="https://use.fontawesome.com/03614296b7.js"></script>
|
|
<link rel="stylesheet" href="{{site.github.url}}/css/site.css">
|
|
<link rel="stylesheet" href="{{site.github.url}}/css/syntax.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-default">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#nav-collapse" aria-expanded="false">
|
|
<span class="sr-only">Toggle navigation</span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
<span class="icon-bar"></span>
|
|
</button>
|
|
<a class="navbar-brand" href="{{site.github.url}}/">
|
|
DNSControl
|
|
</a>
|
|
</div>
|
|
<div class="collapse navbar-collapse" id="nav-collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a href="{{site.github.url}}/getting-started">Getting Started</a></li>
|
|
<li><a href="{{site.github.url}}/js">Language Reference</a></li>
|
|
<li><a href="{{site.github.url}}/provider-list">Providers</a></li>
|
|
<li>
|
|
<a href="https://github.com/StackExchange/dnscontrol" style="padding:10px 12px"><span class="fa fa-github fa-2x" aria-hidden="true"></span></a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
<div class='container'>
|
|
{{ content}}
|
|
</div>
|
|
|
|
{% comment %} Live reload script. Dev mode only {% endcomment %} {% unless site.github %}
|
|
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
|
|
{% endunless %}
|
|
{% comment %} This script makes the examples collapse appropriately {% endcomment %}
|
|
|
|
<script>
|
|
$('.example-collapse').click(function (e) {
|
|
e.preventDefault();
|
|
$(this).parent().next().collapse('toggle');
|
|
$(this).toggleClass('expanded')
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |