demosite/index.html

40 lines
934 B
HTML
Raw Normal View History

2011-09-15 04:32:56 +03:00
<!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>
2018-12-17 15:25:01 +02:00
<script src="pagify.js" type="text/javascript"></script>
2011-09-16 00:48:08 +03:00
<script type='text/javascript'>
$(document).ready(function() {
$('#page_holder').pagify({
pages: ['about', 'usage', 'options'],
animation: 'fadeIn',
2011-09-30 14:15:04 +03:00
'default': 'about',
2011-09-16 01:34:55 +03:00
cache: true
2011-09-16 00:48:08 +03:00
});
});
</script>
2018-12-17 15:25:01 +02:00
<title>Matomo-WP Demo</title>
2011-09-15 04:32:56 +03:00
</head>
<body>
<div id='container'>
2018-12-17 15:25:01 +02:00
<header>
<h1>MatomoWP<small>Matomo and Wordpress plugin tandem for web site analytics</small></h1>
2011-09-15 04:32:56 +03:00
<nav>
<a href='#about'>About</a>
<a href='#usage'>Usage</a>
<a href='#options'>Options</a>
</nav>
2018-12-17 15:25:01 +02:00
</header>
2011-09-15 04:32:56 +03:00
<div id='page_holder' />
</div>
2011-09-15 04:32:56 +03:00
</body>
</html>