source: vlo/trunk/vlo-web-app/src/main/java/eu/clarin/cmdi/vlo/wicket/pages/VloBasePage.html @ 5476

Last change on this file since 5476 was 5476, checked in by Twan Goosen, 10 years ago

added piwik tracking code to base page

File size: 2.8 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org" xml:lang="en">
4    <!--
5    Copyright (C) 2014 CLARIN
6   
7    This program is free software: you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation, either version 3 of the License, or
10    (at your option) any later version.
11   
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for expands.
16   
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19    -->
20
21    <!--
22        Created on : Jan 23, 2014, 5:10:53 PM
23        Author     : twagoo
24   
25        Based on "business one" template: http://www.opendesigns.org/design/business_one/
26    -->
27
28    <head>
29        <title wicket:id="title">CLARIN VLO</title>
30        <meta http-equiv="content-type" content="text/html; charset=utf-8" />
31        <meta name="viewport" content="width=device-width"/>
32        <meta wicket:id="pageDescription" name="description" content="" />
33    </head>
34
35    <body>
36        <div id="main">
37            <div id="header">
38                <div id="logo">
39                    <h1>CLARIN Virtual Language Observatory</h1>
40                    <a id="headerlink_clarin" href="http://www.clarin.eu/"><span>CLARIN</span></a>
41                </div>
42            </div>
43
44            <div wicket:id="feedback" id="feedback">[feedback]</div>
45
46            <wicket:child />
47
48            <div id="footer">
49                CLARIN VLO version <wicket:message key="vlo.version" /> 
50                | <a wicket:id="help" href="#">help</a> 
51                | <wicket:link><a href="AboutPage.html">about</a></wicket:link>
52            </div>
53        </div>
54       
55                <!-- Piwik -->
56                <script type="text/javascript">
57                  var _paq = _paq || [];
58                  _paq.push(["setDomains", ["*.catalog.clarin.eu"]]);
59                  _paq.push(['trackPageView']);
60                  _paq.push(['enableLinkTracking']);
61                  (function() {
62                        var u="https://stats.clarin.eu/";
63                        _paq.push(['setTrackerUrl', u+'piwik.php']);
64                        _paq.push(['setSiteId', 3]);
65                        var d=document, g=d.createElement('script'), s=d.getElementsByTagName('scrip
66                t')[0]; g.type='text/javascript';
67                        g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,
68                s);
69                  })();
70                </script>
71                <noscript><p><img src="http://stats.clarin.eu/piwik.php?idsite=3" style="border:
72                0;" alt="" /></p></noscript>
73                <!-- End Piwik Code -->
74
75    </body>
76</html>
Note: See TracBrowser for help on using the repository browser.