tracking code and image dimensions

This commit is contained in:
Alexander Yakovlev 2018-12-17 20:38:13 +07:00
parent 1ec970d4b5
commit 5b4e37fc23
2 changed files with 42 additions and 23 deletions

View file

@ -2,7 +2,7 @@
<p>We are one of the few agents in the area that specialize in both sales and lettings. Whether youre looking to sell or let your home, we are the people to come to.</p>
<p>If youre a home owner looking to move on, we will come and carry out a free, no-obligation valuation on your property at your earliest convenience. If you choose to use us to market your property, our services dont end there. We also advise you on the best way to present it so that you get a quick sale or rental at the right price.</p>
<img src="https://loremflickr.com/320/240" />
<img src="https://loremflickr.com/320/240" width="320" height="240" />
<p>If youre looking for a home then pop in and see us or Contact Us. We market all our properties on the big property websites and our own site. We may have something new on our books that you could see first before we start our marketing. You dont want to miss out on your perfect home!</p>
<ul>

View file

@ -4,11 +4,47 @@
<meta charset='utf-8'>
<link rel="stylesheet" href="style.css" type="text/css">
<!-- Matomo -->
<script type="text/javascript">
var _paq = _paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//matomo.polesie.local/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', '1']);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=false; g.defer=false; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true;
g.src=u+'plugins/SessionReports/js/tracker.js';
s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<script src="jquery-1.6.4.min.js" type="text/javascript"></script>
<script src="pagify.js" type="text/javascript"></script>
<script type='text/javascript'>
<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>
<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'],
@ -17,23 +53,6 @@
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>
</script>
</body>
</html>