mirror of
https://github.com/danbulant/api_docs
synced 2026-05-19 04:08:40 +00:00
78 lines
2.5 KiB
Text
78 lines
2.5 KiB
Text
<%#
|
|
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.
|
|
%>
|
|
<% language_tabs = current_page.data.language_tabs %>
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
|
<title><%= current_page.data.title || "API Documentation" %></title>
|
|
|
|
<%= stylesheet_link_tag :screen, media: :screen %>
|
|
<%= stylesheet_link_tag :print, media: :print %>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
|
<%= javascript_include_tag "all" %>
|
|
|
|
<% if language_tabs %>
|
|
<script>
|
|
$(function() {
|
|
setupLanguages(<%= language_tabs.map{ |lang| lang.is_a?(Hash) ? lang.keys.first : lang }.to_json %>);
|
|
});
|
|
</script>
|
|
<% end %>
|
|
</head>
|
|
|
|
<body class="<%= page_classes %>">
|
|
<div class="tocify-wrapper">
|
|
<%= image_tag "logo.png" %>
|
|
<div class="search">
|
|
<input type="text" class="search" id="input-search">
|
|
</div>
|
|
<div class="search-info"></div>
|
|
<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>
|
|
<div class="page-wrapper">
|
|
<div class="dark-box"></div>
|
|
<div class="content">
|
|
<%= yield %>
|
|
<% current_page.data.includes && current_page.data.includes.each do |include| %>
|
|
<%= partial "includes/#{include}" %>
|
|
<% end %>
|
|
</div>
|
|
<div class="dark-box">
|
|
<% if language_tabs %>
|
|
<div id="lang-selector">
|
|
<% language_tabs.each do |lang| %>
|
|
<% if lang.is_a? Hash %>
|
|
<a href="#" data-language-name="<%= lang.keys.first %>"><%= lang.values.first %></a>
|
|
<% else %>
|
|
<a href="#" data-language-name="<%= lang %>"><%= lang %></a>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|