-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into update-npm-packages
- Loading branch information
Showing
3 changed files
with
151 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title><?js= ((env.conf.templates.meta && env.conf.templates.meta.title) || title) ?></title> | ||
<link rel="apple-touch-icon" sizes="57x57" href="../favicon/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="../favicon/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="../favicon/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="../favicon/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="../favicon/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="../favicon/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="../favicon/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="../favicon/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="../favicon/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="../favicon/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="../favicon/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="../favicon/manifest.json"> | ||
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="../favicon/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<?js if (env.conf.templates.meta) { ?> | ||
<?js if (env.conf.templates.meta.description) { ?><meta name="description" content="<?js= env.conf.templates.meta.description ?>" /><?js } ?> | ||
<?js if (env.conf.templates.meta.keyword) { ?> | ||
<meta name="keywords" content="<?js= env.conf.templates.meta.keyword ?>" /> | ||
<meta name="keyword" content="<?js= env.conf.templates.meta.keyword ?>" /> | ||
<?js } ?> | ||
<?js } ?> | ||
<?js if (env.conf.templates.openGraph) { ?> | ||
<meta property="og:title" content="<?js= env.conf.templates.openGraph.title ?>"/> | ||
<meta property="og:type" content="<?js= env.conf.templates.openGraph.type ?>"/> | ||
<meta property="og:image" content="<?js= env.conf.templates.openGraph.image ?>"/> | ||
<?js if (env.conf.templates.openGraph.site_name) { ?><meta property="og:site_name" content="<?js= env.conf.templates.openGraph.site_name ?>"/><?js } ?> | ||
<meta property="og:url" content="<?js= env.conf.templates.openGraph.url ?>"/> | ||
<?js } ?> | ||
<script src="scripts/prettify/prettify.js"></script> | ||
<script src="scripts/prettify/lang-css.js"></script> | ||
<script src="scripts/jquery.min.js"></script> | ||
<!--[if lt IE 9]> | ||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> | ||
<![endif]--> | ||
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> | ||
<link type="text/css" rel="stylesheet" href="styles/bootstrap.min.css"> | ||
<link type="text/css" rel="stylesheet" href="styles/jaguar.css"> | ||
|
||
<?js if (env.conf.templates) { ?> | ||
<script> | ||
var config = <?js= JSON.stringify(env.conf.templates) ?>; | ||
</script> | ||
<?js } ?> | ||
|
||
<?js if (env.conf.templates.googleAnalytics) { ?> | ||
<script type="text/javascript"> | ||
var _gaq = _gaq || []; | ||
_gaq.push(['_setAccount', config.googleAnalytics]); | ||
_gaq.push(['_trackPageview']); | ||
|
||
(function() { | ||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; | ||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | ||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); | ||
})(); | ||
</script> | ||
<?js } ?> | ||
</head> | ||
<body> | ||
<div id="wrap" class="clearfix"> | ||
<?js= this.partial('navigation.tmpl', this) ?> | ||
<div class="main"> | ||
<h1 class="page-title" data-filename="<?js= filename ?>"><?js= title ?></h1> | ||
<?js= content ?> | ||
|
||
<?js if (env.conf.templates.disqus) { ?> | ||
<!-- disqus code --> | ||
<div id="disqus_thread"></div> | ||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> | ||
<a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> | ||
<!-- // disqus code --> | ||
<?js } ?> | ||
|
||
<footer> | ||
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc <?js= env.version.number ?></a> on <?js= (new Date()) ?> | ||
</footer> | ||
</div> | ||
</div> | ||
<script>prettyPrint();</script> | ||
<script src="scripts/jaguar.js"></script> | ||
</body> | ||
</html> |