_includes/themes/zeppelin/default.html (46 lines of code) (raw):

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>{{ page.title }}</title> {% if page.description %}<meta name="description" content="{{ page.description }}">{% endif %} <meta name="author" content="{{ site.author.name }}"> <!-- Enable responsive viewport --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- Le HTML5 shim, for IE6-8 support of HTML elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- Le styles --> <link href="{{ ASSET_PATH }}/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"> <link href="{{ ASSET_PATH }}/icon?family=Material+Icons"> <link href="{{ ASSET_PATH }}/bootstrap/css/bootstrap.css" rel="stylesheet"> <link href="{{ ASSET_PATH }}/css/style.css?body=1" rel="stylesheet" type="text/css"> <link href="{{ ASSET_PATH }}/css/syntax.css" rel="stylesheet" type="text/css" media="screen" /> <!-- Le fav and touch icons --> <!-- Update these with your own images <link rel="shortcut icon" href="images/favicon.ico"> <link rel="apple-touch-icon" href="images/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png"> --> <link rel="apple-touch-icon" sizes="180x180" href="{{ ASSET_PATH }}/img/favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="{{ ASSET_PATH }}/img/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="{{ ASSET_PATH }}/img/favicon/favicon-16x16.png"> <link rel="icon" type="image/png" href="{{ ASSET_PATH }}/img/favicon/favicon.ico"> <link rel="manifest" href="{{ ASSET_PATH }}/img/favicon/manifest.json"> <link rel="mask-icon" href="{{ ASSET_PATH }}/img/favicon/safari-pinned-tab.svg" color="#438bc9"> <meta name="theme-color" content="#ffffff"> <!-- Js --> <script src="{{ ASSET_PATH }}/jquery-1.10.2.min.js"></script> <script src="{{ ASSET_PATH }}/angular.min.js"></script> <!-- <script src="https://s3.amazonaws.com/apache-zeppelin/post/medium.js"></script>--> <script src="{{ ASSET_PATH }}/ui-bootstrap-tpls-2.5.0.js"></script> <script src="{{ ASSET_PATH }}/bootstrap/js/bootstrap.min.js"></script> <script src="{{ ASSET_PATH }}/js/docs.js"></script> <script src="{{ ASSET_PATH }}/js/anchor.min.js"></script> <script src="{{ ASSET_PATH }}/js/moment.min.js"></script> <script src="{{ ASSET_PATH }}/js/helium.controller.js"></script> <script src="{{ ASSET_PATH }}/js/medium.controller.js"></script> <!-- atom & rss feed --> <link href="{{ BASE_PATH }}{{ site.JB.atom_path }}" type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed"> <link href="{{ BASE_PATH }}{{ site.JB.rss_path }}" type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed"> </head> <body> {% include themes/zeppelin/_navigation.html %} <div class="content"> {{ content }} </div> {% include JB/analytics %} {% if page.title == "Zeppelin" %} {% include_relative twitter.md %} {% include_relative medium.md %} {% endif %} <footer> <!-- <p>&copy; {{ site.time | date: '%Y' }} {{ site.author.name }}</p>--> </footer> </body> </html>