causeway-standard-theme
Version:
109 lines (100 loc) • 4.43 kB
HTML
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, minimum-scale=1">
<title>Causeway Theme</title>
<!--Favicon-->
<link rel="apple-touch-icon" sizes="57x57" href="/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<!-- Bootstrap -->
<link href="css/bootstrap.css" rel="stylesheet" media="screen">
<link href="css/causeway-utils.css" rel="stylesheet" media="screen">
<link href="css/causeway-standard.css" rel="stylesheet" media="screen">
<link href="docs/css/docs.css" rel="stylesheet" media="screen">
</head>
<body>
<div class="container site-header">
<div class="site-header-holder">
<!--(bake components/site-heading.html)-->
<!--(bake components/site-menu.html)-->
</div>
</div>
<div class="container page">
<div class="content pane single-pane">
<div class="jumbotron">
<h1>Causeway Style </h1>
<div id="download">
</div>
</div>
<br/>
<div class="row">
<div class="col-sm-4 version-details">
<h1 class="title">Whats new in v3.0.0-0?</h1>
<p>Version 3 of the Causeway CSS provides a fully responsive components for implementation on desktop, tablet
and mobile devices.</p>
<p>Please see the changelog for the list of important features and fixes contained within the version 3
release.</p>
<p>Looking for older versions? They are available under archive menu.</p>
</div>
<div class="col-xs-8">
<h1 class="title">Changelog</h1>
<div id="release-notes"></div>
</div>
</div>
<br/>
</div>
</div>
<!--(bake components/site-footer.html)--><!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.js"></script>
<script src="js/causeway-utils.js"></script>
<script src="js/causeway.js"></script>
<script>
jQuery(function () {
// Package Details
jQuery
.getJSON('./package.json', function (data) {
console.log("data", data);
window.Causeway.package = data;
})
.then(function () {
$(document).trigger("package.loaded");
jQuery("#release-notes")
.load('release-notes/index.html', function () {
var $releaseWrapper = jQuery('.release-wrapper').not('.release-wrapper:first-child');
jQuery('.release-content', $releaseWrapper).hide();
jQuery('.glyphicon', $releaseWrapper).removeClass('glyphicon-tree-minus').addClass('glyphicon-tree-plus');
var downloadHtml = jQuery('<a></a>', {
class: "btn btn-default btn-lg",
text: "Download v" + Causeway.package.version,
href: "downloads/CausewayCSS.dist.v" + Causeway.package.version + ".zip"
});
jQuery('#download').append(downloadHtml);
});
});
jQuery(document).on('click', '.release-wrapper .glyphicon', function () {
jQuery(this).next('.release-content').toggle();
if (jQuery(this).hasClass('glyphicon-tree-minus')) {
jQuery(this).removeClass('glyphicon-tree-minus').addClass('glyphicon-tree-plus');
} else {
jQuery(this).removeClass('glyphicon-tree-plus').addClass('glyphicon-tree-minus');
}
});
})
</script>
</body>
</html>