mirror of
https://github.com/monero-project/monero-site.git
synced 2024-11-17 00:07:54 +00:00
8fc80c3d39
- Reverted changed lines in footer - Removed GA script in langauge.php - Replaced mentions of GA with Matomo in Legal page
59 lines
No EOL
2.6 KiB
HTML
59 lines
No EOL
2.6 KiB
HTML
<footer class="container-fluid">
|
|
<div class="container">
|
|
<div class="row around-xs footer-wrapper">
|
|
{% for item in site.data.lang[site.lang].footer-1 %}
|
|
<div class="col-sm-3 col-xs-6">
|
|
<h3>{{item.title}}</h3>
|
|
<ul class="list-unstyled">
|
|
{% for entry in item.subfolderitems %}
|
|
{% if entry.url contains 'https://' %}
|
|
<li><a class="white" href="{{ entry.url }}">{{ entry.name }}</a></li>
|
|
{%elsif entry.url contains 'irc'%}
|
|
<li><a class="white" href="{{ entry.url }}">{{ entry.name }}</a></li>
|
|
{%else%}
|
|
<li><a class="white" href="{{site.baseurl}}/{{ entry.url }}">{{ entry.name }}</a></li>
|
|
{%endif%}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endfor %}
|
|
<div class="row center-xs">
|
|
<div class="social-icons">
|
|
</div>
|
|
<div class="footer-links">
|
|
<ul class="list-unstyled list-inline">
|
|
{% for item in site.data.lang[site.lang].footer-2 %}
|
|
{% if item.url contains 'https://' %}
|
|
<li><a href="{{item.url}}" class="white footer-link">{{item.name}}</a></li>
|
|
{%else%}
|
|
<li><a href="{{site.baseurl}}/{{item.url}}" class="white footer-link">{{item.name}}</a></li>
|
|
{%endif%}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!-- 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 = "//analytics.getmonero.org/";
|
|
_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 = true;
|
|
g.defer = true;
|
|
g.src = u + 'piwik.js';
|
|
s.parentNode.insertBefore(g, s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
{% include hostflag.html %} |