|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <meta charset='utf-8'> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="chrome=1"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
| 7 | + <!--link href="https://fonts.googleapis.com/css?family=Open+Sans" rel='stylesheet' type='text/css'--> |
| 8 | + <link href="https://fonts.googleapis.com/css?family=Mukta+Vaani:200,300,400,600,800" rel="stylesheet"> |
| 9 | + <link rel="stylesheet" href="{{ '/assets/css/style.css?' | relative_url }}" media="screen" type="text/css"> |
| 10 | + <link rel="stylesheet" href="{{ '/assets/css/print.css' | relative_url }}" media="print" type="text/css"> |
| 11 | + |
| 12 | + <!--[if lt IE 9]> |
| 13 | + <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
| 14 | + <![endif]--> |
| 15 | + |
| 16 | + <title>{{ site.title | default: site.github.repository_name }}</title> |
| 17 | + </head> |
| 18 | + |
| 19 | + <body> |
| 20 | + <header> |
| 21 | + <div class="inner"> |
| 22 | + <a href="{{ '/' | absolute_url }}"> |
| 23 | + <h1>{{ site.title | default: site.github.repository_name }}</h1> |
| 24 | + </a> |
| 25 | + <h2>{{ site.description | default: site.github.project_tagline }}</h2> |
| 26 | + {% if site.github.is_project_page %} |
| 27 | + <a href="{{ '/' | absolute_url }}" class="button"></a> |
| 28 | + {% endif %} |
| 29 | + </div> |
| 30 | + </header> |
| 31 | + |
| 32 | + <div id="content-wrapper"> |
| 33 | + <div class="inner clearfix"> |
| 34 | + <section id="main-content"> |
| 35 | + {{ content }} |
| 36 | + |
| 37 | + </section> |
| 38 | + |
| 39 | + <aside id="sidebar"> |
| 40 | + |
| 41 | + <hr/> |
| 42 | + |
| 43 | + <div class="moveright"> |
| 44 | + {% if site.links.source %} |
| 45 | + <h2><a href="{{ site.links.source }}"><p>Sources</p></a></h2> |
| 46 | + {% endif %} |
| 47 | + |
| 48 | + {% if site.links.javadocs %} |
| 49 | + <h2><a href="{{ site.links.javadocs }}"><p>APIs</p></a></h2> |
| 50 | + {% endif %} |
| 51 | + |
| 52 | + {% if site.links.docs %} |
| 53 | + <h2><a href="{{ site.links.docs }}"><p>Documentatation</p></a></h2> |
| 54 | + {% endif %} |
| 55 | + |
| 56 | + {% if site.links.faq %} |
| 57 | + <h2><a href="{{ site.links.faq }}"><p>FAQ</p></a></h2> |
| 58 | + {% endif %} |
| 59 | + |
| 60 | + {% if site.links.download %} |
| 61 | + <h2><a href="{{ site.links.download }}"><p>Download</p></a></h2> |
| 62 | + {% endif %} |
| 63 | + |
| 64 | + {% if site.links.hide_issuetracker != true %} |
| 65 | + <h2><a href="{{ site.github.issues_url }}"><p>Issue Tracker</p></a></h2> |
| 66 | + {% endif %} |
| 67 | + |
| 68 | + {% if site.links.mailinglist %} |
| 69 | + <h2><a href="{{ site.links.mailinglist }}"><p>Mailing List</p></a></h2> |
| 70 | + {% endif %} |
| 71 | + |
| 72 | + <h2><a href="CONTRIBUTING"><p>Contribute</p></a></h2> |
| 73 | + |
| 74 | + <h2><a href="LICENSE"><p>License</p></a></h2> |
| 75 | + </div> |
| 76 | + |
| 77 | + <hr/> |
| 78 | + |
| 79 | + <div class="sponsor"> |
| 80 | + <p>Sponsored by<a href="http://www.oracle.com" class="oraclelogo"></a></p> |
| 81 | + </div> |
| 82 | + |
| 83 | + </aside> |
| 84 | + </div> |
| 85 | + </div> |
| 86 | + |
| 87 | + <div class="footer"><a id="copyright" class="oracle" href="https://www.oracle.com/legal/copyright.html">© Oracle</a> | By contributing to this project, you are agreeing to the terms of use described <a href="CONTRIBUTING">here</a>.</div> |
| 88 | + |
| 89 | + {% if site.google_analytics %} |
| 90 | + <script type="text/javascript"> |
| 91 | + var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); |
| 92 | + document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); |
| 93 | + </script> |
| 94 | + <script type="text/javascript"> |
| 95 | + try { |
| 96 | + var pageTracker = _gat._getTracker("{{ site.google_analytics }}"); |
| 97 | + pageTracker._trackPageview(); |
| 98 | + } catch(err) {} |
| 99 | + </script> |
| 100 | + {% endif %} |
| 101 | + </body> |
| 102 | +</html> |
0 commit comments