523 changes: 523 additions & 0 deletions css/stylesheet.css

Large diffs are not rendered by default.

Binary file added images/body-bg.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/download-button.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/github-button.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/header-bg.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/highlight-bg.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/sidebar-bg.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 83 additions & 2 deletions index.html
@@ -1,11 +1,92 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

<link href="http://fonts.googleapis.com/css?family=Open+Sans&subset=latin,cyrillic" rel="stylesheet"
type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Architects+Daughter' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/stylesheet.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="css/pygment_trac.css" media="screen"/>
<link rel="stylesheet" type="text/css" href="css/print.css" media="print"/>

<script src="http://code.jquery.com/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/jquery.twbsPagination.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>

<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<title>jQuery Pagination plugin</title>
</head>

<body>
<header>
<div class="inner">
<h1>jQuery Pagination plugin</h1>

<h2>Optimized for bootstrap</h2>
<a href="https://github.com/esimakin/twbs-pagination" class="button">
<small>View project on</small>
GitHub</a>
</div>
</header>

<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<h3>
<a name="about" class="anchor" href="#about"><span
class="octicon octicon-link"></span></a>About</h3>

<p>This automatic page generator is the easiest way to create beautiful pages for all of your projects.
Author your page content here using GitHub Flavored Markdown, select a template crafted by a designer,
and publish. After your page is generated, you can check out the new branch:</p>

<h3>
<a name="download" class="anchor" href="#download"><span
class="octicon octicon-link"></span></a>Download</h3>

<p>
<a href="https://github.com/esimakin/twbs-pagination/zipball/master" class="button">
<small>Download</small>
.zip file
</a>
<a href="https://github.com/esimakin/twbs-pagination/tarball/master" class="button">
<small>Download</small>
.tar.gz file
</a>
</p>

<h3>
<a name="demo" class="anchor" href="#about"><span
class="octicon octicon-link"></span></a>Demo</h3>

<p>
<div id="page-content" class="well"></div>
<div class="text-center">
<ul id="pagination-demo" class="pagination-sm"></ul>
</div>
</p>

</section>

<aside id="sidebar">

<ul class="nav nav-pills nav-stacked">
<li><a href="#about">About</a></li>
<li><a href="#download">Download</a>
</ul>

</aside>
</div>
</div>

<p style="text-align: center;">Sorry, site under construction</p>

</body>
</html>
2,006 changes: 2,006 additions & 0 deletions js/bootstrap.js

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions js/main.js
@@ -0,0 +1,10 @@
$(document).ready(function () {
$('#pagination-demo').twbsPagination({
totalPages: 35,
visiblePages: 8,
onPageClick: function (event, page) {
$('#page-content').text('Page ' + page);
}
});
});