|
@@ -0,0 +1,83 @@
|
|
|
|
+<!DOCTYPE html>
|
|
|
|
+<html>
|
|
|
|
+ <head>
|
|
|
|
+ <title>{{ page.title }}</title>
|
|
|
|
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
+ <meta name="author" content="Nicolas Petton" />
|
|
|
|
+ <link rel="stylesheet" type="text/css" href='/css/style.css' />
|
|
|
|
+ <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>
|
|
|
|
+ <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
|
|
|
|
+ <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
|
|
|
|
+
|
|
|
|
+ </head>
|
|
|
|
+ <body>
|
|
|
|
+
|
|
|
|
+ <div class="page-header">
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ <div class="container">
|
|
|
|
+ <nav class="navbar navbar-default" 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>
|
|
|
|
+ <a class="navbar-brand" href="/">Amber docs</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><a href="http://amber-lang.net">← Back to amber-lang.net</a></li>
|
|
|
|
+ </ul>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </nav>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="content">
|
|
|
|
+ <h1>
|
|
|
|
+ Amber docs <span class="tiny">v0.12.3</span><br><small>Guides & API reference</small>
|
|
|
|
+ </h1>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="container amber-main">
|
|
|
|
+
|
|
|
|
+ <div class="row">
|
|
|
|
+
|
|
|
|
+ <div class="col-md-3">
|
|
|
|
+ {% include nav.html %}
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div class="col-md-9 amber-content">
|
|
|
|
+ <h2>{{page.title}}</h2>
|
|
|
|
+ {{ content }}
|
|
|
|
+
|
|
|
|
+ <div class="next-section">
|
|
|
|
+ {% if page.next != null %}
|
|
|
|
+ <a href="{{ page.next }}" class="btn btn-primary next">
|
|
|
|
+ Next section →
|
|
|
|
+ </a>
|
|
|
|
+ {% endif %}
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+ <div id="footer">
|
|
|
|
+ <div class="container">
|
|
|
|
+ <p>Copyright © 2014 <a href="http://www.nicolas-petton.fr">Nicolas Petton</a> and <a href="https://github.com/amber-smalltalk/amber/graphs/contributors">Amber contributors</a>. The content of this website in licensed under <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC-BY-NC 3.0</a>.</p>
|
|
|
|
+ </div>
|
|
|
|
+ </div>
|
|
|
|
+ </body>
|
|
|
|
+</html>
|