Skip to content

Instantly share code, notes, and snippets.

@bdavidxyz
Created June 3, 2014 13:27
Show Gist options
  • Save bdavidxyz/d8663d272fb8fd1bd0f4 to your computer and use it in GitHub Desktop.
Save bdavidxyz/d8663d272fb8fd1bd0f4 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Ruban</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css" />
<link rel="stylesheet" href="bower_components/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="bower_components/highlightjs/styles/tomorrow.css" />
<link rel="stylesheet" href="bower_components/ruban/css/ruban.min.css" />
<link rel="stylesheet" href="bower_components/ruban/css/ruban-print.min.css" media="print" />
<style>
section {
border-left: 1em solid #434343;
border-right: 1em solid #434343;
}
.pagination {
right: 2.6em;
}
</style>
</head>
<body>
<section id="ruban">
<h1>mysection</h1>
<ul>
<li>aaa</li>
<li>bbb</li>
<li>ccc</li>
</ul>
</section>
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="bower_components/keymaster/keymaster.js"></script>
<script src="bower_components/hammerjs/hammer.min.js"></script>
<script src="bower_components/highlightjs/highlight.pack.js"></script>
<script src="bower_components/ruban/js/ruban.min.js"></script>
<script>
var ruban = new Ruban();
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment