demosite/index.html

40 lines
934 B
HTML

<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="pagify.js" type="text/javascript"></script>
<script type='text/javascript'>
$(document).ready(function() {
$('#page_holder').pagify({
pages: ['about', 'usage', 'options'],
animation: 'fadeIn',
'default': 'about',
cache: true
});
});
</script>
<title>Matomo-WP Demo</title>
</head>
<body>
<div id='container'>
<header>
<h1>MatomoWP<small>Matomo and Wordpress plugin tandem for web site analytics</small></h1>
<nav>
<a href='#about'>About</a>
<a href='#usage'>Usage</a>
<a href='#options'>Options</a>
</nav>
</header>
<div id='page_holder' />
</div>
</body>
</html>