aboutsummaryrefslogtreecommitdiff
path: root/site/src/main/jekyll/_layouts/documentation.html
diff options
context:
space:
mode:
Diffstat (limited to 'site/src/main/jekyll/_layouts/documentation.html')
-rw-r--r--site/src/main/jekyll/_layouts/documentation.html66
1 files changed, 66 insertions, 0 deletions
diff --git a/site/src/main/jekyll/_layouts/documentation.html b/site/src/main/jekyll/_layouts/documentation.html
new file mode 100644
index 00000000..a958cb29
--- /dev/null
+++ b/site/src/main/jekyll/_layouts/documentation.html
@@ -0,0 +1,66 @@
+<!DOCTYPE html>
+<!--
+ ~ =========================================================================================
+ ~ Copyright © 2013 the kamon project <http://kamon.io/>
+ ~
+ ~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ ~ except in compliance with the License. You may obtain a copy of the License at
+ ~
+ ~ http://www.apache.org/licenses/LICENSE-2.0
+ ~
+ ~ Unless required by applicable law or agreed to in writing, software distributed under the
+ ~ License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ ~ either express or implied. See the License for the specific language governing permissions
+ ~ and limitations under the License.
+ ~ =========================================================================================
+ -->
+
+<html lang="en">
+ <head>
+ <link href="https://plus.google.com/107736741680270898032?rel=author">
+ <title>{{ page.title }}</title>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta name="description" content="Kamon is a set of tools that will help you monitor your reactive applications">
+
+ <link rel="stylesheet" href="/assets/css/bootstrap.min.css">
+ <link rel="stylesheet" href="/assets/css/syntax-highlight.css">
+ <link rel="stylesheet" href="/assets/css/font-awesome.min.css">
+ <link rel='stylesheet' href="/assets/css/glyphicons-free.css">
+ <link rel="stylesheet" href="/assets/css/kamon.css">
+
+ </head>
+ <body>
+ <div id="wrap">
+ {% include navigation-bar.html %}
+ <div class="container">
+ <div class="row">
+ <div class="col-sm-3">
+ {% include documentation-tree.html %}
+ </div>
+ <div class="col-sm-9">
+ {{ content }}
+ </div>
+ </div>
+ </div>
+ <hr>
+ <div id="push"></div>
+ </div>
+
+ <footer class="footer">
+ <div class="container">
+ <p class="muted credit text-center">Kamon is a open source project, go and check out the code at
+ <a href="http://github.com/kamon-io/Kamon"><img src="/assets/img/github-logo.png" id="github-logo" alt="GitHub"></a>
+ </p>
+ </div>
+ </footer>
+
+ <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
+ <script src="/assets/js/jquery.min.js"></script>
+ <!-- Include all compiled plugins (below), or include individual files as needed -->
+ <script src="/assets/js/bootstrap.min.js"></script>
+ <script src="/assets/js/kamon.js"></script>
+ {% include google-analytics.html %}
+
+ </body>
+</html>