<%#
Copyright 2008-2013 Concur Technologies, Inc.

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.
%>
<!doctype html>
<html>
  <head>
    <meta charset="utf-8">

    <!-- Always force latest IE rendering engine or request Chrome Frame -->
    <meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">

    <!-- Use title if it's in the page YAML frontmatter -->
    <title><%= current_page.data.title || "API Documentation" %></title>

    <%= stylesheet_link_tag "screen", media: 'screen' %>
    <%= stylesheet_link_tag "print", media: 'print' %>
    <script src="//code.jquery.com/jquery-1.10.1.min.js"></script>
    <%= javascript_include_tag  "all" %>

    <script>
      $(function() {
        var toc = $("#toc").tocify({
          selectors: "h1,h2",
          extendPage: false,
          theme: "none",
          smoothScroll: false,
          showEffectSpeed: 0,
          hideEffectSpeed: 180,
          ignoreSelector: ".toc-ignore",
          hashGenerator: 'pretty',
          highlightOffset: 60,
          scrollTo: -2,
          scrollHistory: true,
          hashGenerator: function(text, element) {
            return element[0].getAttribute('id');
          }
        }).data("toc-tocify");
        // Hack to make already open sections to start opened,
        // instead of displaying an ugly animation
        setTimeout(function() {
          toc.setOption("showEffectSpeed", 180);
        },50);
        setupLanguages([
          <% if current_page.data.language_tabs %>
            <% current_page.data.language_tabs.each do |lang| %>
              <% if lang.is_a? Hash %>
                '<%= lang.keys[0] %>',
              <% else %>
                '<%= lang %>',
              <% end %>
            <% end %>
          <% end %>
        ]);
      });
    </script>
  </head>

  <body class="<%= page_classes %>">
    <div class="tocify-wrapper">
      <a href="https://mozilla.org/" id="logo">
        <%= image_tag "logo.png", alt: "Mozilla" %>
      </a>
      <div id="toc">
      </div>
      <% if current_page.data.toc_footers %>
      <ul class="toc-footer">
        <% current_page.data.toc_footers.each do |footer| %>
          <li><%= footer %></li>
        <% end %>
      </ul>
      <% end %>

      <div class="build-status">
        <a href="http://travis-ci.org/mozilla/localForage"><img src="https://secure.travis-ci.org/mozilla/localForage.png?branch=master" alt="Build Status"></a>
      </div>
    </div>
    <div class="page-wrapper">
      <div class="content">
        <%= yield %>
        <% if current_page.data.includes %>
          <% current_page.data.includes.each do |include| %>
            <%= partial "includes/#{include}" %>
          <% end %>
        <% end %>
      </div>
      <div class="dark-box">
        <div id="lang-selector">
          <% if current_page.data.language_tabs %>
            <% current_page.data.language_tabs.each do |lang| %>
              <% if lang.is_a? Hash %>
                <a href="#" data-language-name="<%= lang.keys[0] %>"><%= lang.values[0] %></a>
              <% else %>
                <a href="#" data-language-name="<%= lang %>"><%= lang %></a>
              <% end %>
            <% end %>
          <% end %>
        </div>
      </div>
    </div>
  </body>
</html>
