fix #9, matomo and cookie javascript code inside relative js files

This commit is contained in:
Claudio Maradonna 2021-08-25 00:27:38 +02:00
parent a461905760
commit bb0262d384
Signed by untrusted user who does not match committer: claudiomaradonna
GPG key ID: 0CBA58694C5680D9
53 changed files with 564 additions and 1613 deletions

View file

@ -0,0 +1,45 @@
function createCookie(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
$(document).ready(function() {
if (readCookie('cookie-notice-dismissed') == 'true') {
console.log("GDPR Consent Dismiss");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click", function() {
createCookie('cookie-notice-dismissed', 'true', 31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click", function() {
createCookie('cookie-notice-dismissed', 'true', 31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
});

View file

@ -3,6 +3,7 @@
// require bootstrap
// require bootstrap-sprockets
//= require morphext
//= require cookie
/* Set the width of the side navigation to 250px */
function openNav() {

View file

@ -0,0 +1,18 @@
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = "//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u + 'matomo.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 + 'matomo.js'; s.parentNode.insertBefore(g, s);
})();
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function(e) {
_paq.push(['trackGoal', 1]);
});
});

View file

@ -0,0 +1,29 @@
#cookie-notice {
padding: 0.5rem 1rem;
display: none;
text-align: center;
position: fixed;
bottom: 0;
width: calc(100% - 2rem);
background: #222;
color: rgba(255,255,255,0.8);
a {
display: inline-block;
cursor: pointer;
margin-left: 0.5rem;
}
@media (max-width: 767px) {
span {
display: block;
padding-top: 3px;
margin-bottom: 1rem;
}
a {
position: relative;
bottom: 4px;
}
}
}

View file

@ -38,6 +38,12 @@
background-color: #222;
border-top: 3px dashed $body-bg;
box-shadow: 0px 250px #222;
li.list-inline-item {
img {
margin-top: -3px;
}
}
}
// .footer-heading {
@ -431,3 +437,15 @@ aside.aside {
background-position: center;
background-image: asset_url('header-radio.webp');
}
.min-height-500 {
min-height: 500px !important;
}
.fix-icon-mt {
margin-top: -3px;
}
.border-thicker {
border-width: 2px;
}

View file

@ -45,4 +45,4 @@ $on-laptop: 800px;
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import 'base', 'layout', 'sidebar';//, 'syntax-highlighting';
@import 'base', 'layout', 'sidebar', 'cookie';//, 'syntax-highlighting';

View file

@ -1,28 +1,2 @@
{% asset main.js %}
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
{% asset matomo.js defer %}

View file

@ -1,55 +1,6 @@
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>

View file

@ -33,7 +33,7 @@
{%- capture alt_mastodon_logo %}
{%- t meta.alt.mastodon_logo %}
{%- endcapture %}
{% asset mastodon width=20 style="margin-top: -3px;" alt="{{ alt_mastodon_logo }}" %}
{% asset mastodon width=20 alt="{{ alt_mastodon_logo }}" %}
</a>
</li>
<li class="list-inline-item">
@ -45,7 +45,7 @@
{%- capture alt_liberapay_logo %}
{%- t meta.alt.liberapay_logo %}
{%- endcapture %}
{% asset liberapay width=20 style="margin-top: -3px;" alt="{{ alt_liberapay_logo }}" %}
{% asset liberapay width=20 alt="{{ alt_liberapay_logo }}" %}
</a></li>
</ul>

View file

@ -31,7 +31,7 @@ layout: default
</tr>
</tbody>
</table>
<div class="card-footer" style="text-align: right;">
<div class="card-footer text-right">
<small>
<span>
{% for tag in post.tags %}

View file

@ -28,7 +28,7 @@ tags: unitoo aboutus chisiamo team
{%- capture alt_mastodon_logo %}
{%- t meta.alt.mastodon_logo %}
{%- endcapture %}
{% asset mastodon width=20 style="margin-top: -3px;", alt="{{ alt_mastodon_logo }}" %}
{% asset mastodon width=20 class="fix-icon-mt" alt="{{ alt_mastodon_logo }}" %}
{% t buttons.know_us_on_mastodon %}
</a>
</div>

View file

@ -7,7 +7,7 @@ permalink_en: /projects/peertube/
tags: video unitoo peertube freedom software freesoftware interviste
---
<div class="cover header-peertube"></div>
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5" style="min-height: 500px;">
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5 min-height-500">
<h1>{% t channel.title %}</h1>
<p>
{% t channel.p_1 %}

View file

@ -6,6 +6,6 @@ permalink: /contattaci/
permalink_en: /contactus/
tags: unitoo contatti gnupg email contacts
---
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
{% include contacts.html %}
</section>

View file

@ -6,7 +6,7 @@ permalink: /partners/funkwhale/
permalink_en: /partners/funkwhale/
tags: unitoo partners funkwhale podcast music creativecommons freedom
---
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
<h1>{% t funkwhale.title %}</h1>
<p>
{% t funkwhale.text_1 %}

View file

@ -6,7 +6,7 @@ permalink: /partners/peertube/
permalink_en: /partners/peertube/
tags: unitoo partners peertube video creativecommons freedom
---
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
<h1>{% t peertube.title %}</h1>
<p>
{% t peertube.text_1 %}

View file

@ -7,7 +7,7 @@ permalink_en: /projects/radio/
tags: radio unitoo azuracast freedom software freesoftware
---
<div class="cover header-radio"></div>
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5" style="min-height: 500px;">
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5 min-height-500" >
<h1>{% t radio.title %}</h1>
<p>{% t radio.p_1 %}</p>
<hr>

View file

@ -67,7 +67,7 @@ tags: unitoo consulenza software hardware sicurezza informatica
</div>
</div>
<div class="col-12 col-lg-4 mb-5 mb-lg-0">
<div class="card border-success" style="border-width: 2px;">
<div class="card border-success border-thicker">
<div class="card-body">
<h2>{% t technical_advice.prices.second_title %}</h2>
<i class="fa-star fa-lg mb-4 text-warning"></i>

View file

@ -20,23 +20,23 @@
" />
<meta property="og:description" content="
" />
<link rel="canonical" href="http://localhost:4000/404.html" />
<meta property="og:url" content="http://localhost:4000/404.html" />
<link rel="canonical" href="https://www.unitoo.it/404.html" />
<meta property="og:url" content="https://www.unitoo.it/404.html" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"Azienda dedicata allo sviluppo software, alla consulenza informatica e alla formazione","url":"http://localhost:4000/404.html","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"Unitoo","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"Azienda dedicata allo sviluppo software, alla consulenza informatica e alla formazione","url":"https://www.unitoo.it/404.html","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"Unitoo","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -142,7 +142,7 @@
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -151,7 +151,7 @@
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -165,91 +165,16 @@
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,3 @@
var _paq=window._paq||[];_paq.push(["requireConsent"]),_paq.push(["trackPageView"]),_paq.push(["enableLinkTracking"]),function(){var e="//analytics.unitoo.it/";_paq.push(["setTrackerUrl",e+"matomo.php"]),_paq.push(["setSiteId","1"]);var a=document,t=a.createElement("script"),r=a.getElementsByTagName("script")[0];t.type="text/javascript",t.async=!0,t.defer=!0,t.src=e+"matomo.js",r.parentNode.insertBefore(t,r)}(),jQuery(document).ready(function(e){e("a[href^='mailto:']").on("click",function(){_paq.push(["trackGoal",1])})});
//# sourceMappingURL=/assets/source-maps/matomo.js.map
//# sourceURL=_assets/javascripts/matomo.js

View file

@ -0,0 +1,45 @@
function createCookie(name, value, days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name, "", -1);
}
$(document).ready(function() {
if (readCookie('cookie-notice-dismissed') == 'true') {
console.log("GDPR Consent Dismiss");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click", function() {
createCookie('cookie-notice-dismissed', 'true', 31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click", function() {
createCookie('cookie-notice-dismissed', 'true', 31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
});

View file

@ -3,6 +3,7 @@
// require bootstrap
// require bootstrap-sprockets
//= require morphext
//= require cookie
/* Set the width of the side navigation to 250px */
function openNav() {

View file

@ -0,0 +1,18 @@
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u = "//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u + 'matomo.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 + 'matomo.js'; s.parentNode.insertBefore(g, s);
})();
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function(e) {
_paq.push(['trackGoal', 1]);
});
});

View file

@ -0,0 +1,29 @@
#cookie-notice {
padding: 0.5rem 1rem;
display: none;
text-align: center;
position: fixed;
bottom: 0;
width: calc(100% - 2rem);
background: #222;
color: rgba(255,255,255,0.8);
a {
display: inline-block;
cursor: pointer;
margin-left: 0.5rem;
}
@media (max-width: 767px) {
span {
display: block;
padding-top: 3px;
margin-bottom: 1rem;
}
a {
position: relative;
bottom: 4px;
}
}
}

View file

@ -38,6 +38,12 @@
background-color: #222;
border-top: 3px dashed $body-bg;
box-shadow: 0px 250px #222;
li.list-inline-item {
img {
margin-top: -3px;
}
}
}
// .footer-heading {
@ -431,3 +437,15 @@ aside.aside {
background-position: center;
background-image: asset_url('header-radio.webp');
}
.min-height-500 {
min-height: 500px !important;
}
.fix-icon-mt {
margin-top: -3px;
}
.border-thicker {
border-width: 2px;
}

View file

@ -45,4 +45,4 @@ $on-laptop: 800px;
}
// Import partials from `sass_dir` (defaults to `_sass`)
@import 'base', 'layout', 'sidebar';//, 'syntax-highlighting';
@import 'base', 'layout', 'sidebar', 'cookie';//, 'syntax-highlighting';

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1 @@
{"version":3,"file":"_assets/javascripts/matomo.js","mappings":"AAAA,IAAA,KAAA,OAAA,SAEA,KAAA,MAAA,mBACA,KAAA,MAAA,kBACA,KAAA,MAAA,uBACA,WACA,IAAA,EAAA,yBACA,KAAA,MAAA,gBAAA,EAAA,eACA,KAAA,MAAA,YAAA,MACA,IAAA,EAAA,SAAA,EAAA,EAAA,cAAA,UAAA,EAAA,EAAA,qBAAA,UAAA,GACA,EAAA,KAAA,kBAAA,EAAA,OAAA,EAAA,EAAA,OAAA,EAAA,EAAA,IAAA,EAAA,YAAA,EAAA,WAAA,aAAA,EAAA,GALA,GAQA,OAAA,UAAA,MAAA,SAAA,GACA,EAAA,sBAAA,GAAA,QAAA,WACA,KAAA,MAAA,YAAA","sources":["_assets/javascripts/matomo.js"],"names":[]}

View file

@ -20,23 +20,23 @@ Chi siamo" />
Chi siamo, quali sono i nostri valori e la nostra mission" />
<meta property="og:description" content="
Chi siamo, quali sono i nostri valori e la nostra mission" />
<link rel="canonical" href="http://localhost:4000/chisiamo/" />
<meta property="og:url" content="http://localhost:4000/chisiamo/" />
<link rel="canonical" href="https://www.unitoo.it/chisiamo/" />
<meta property="og:url" content="https://www.unitoo.it/chisiamo/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.aboutus","url":"http://localhost:4000/chisiamo/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.aboutus","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.aboutus","url":"https://www.unitoo.it/chisiamo/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.aboutus","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -105,7 +105,7 @@ Chi siamo, quali sono i nostri valori e la nostra mission" />
</h4>
<div class="col text-lg-right">
<a class="btn btn-secondary btn-lg ml-auto" target="_blank" rel="nofollow" href="https://mastodon.uno/@unitoo">
<img width="20" style="margin-top: -3px;," alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" class="fix-icon-mt" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
Vieni a conoscerci su Mastodon!
</a>
</div>
@ -305,7 +305,7 @@ Chi siamo, quali sono i nostri valori e la nostra mission" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -314,7 +314,7 @@ Chi siamo, quali sono i nostri valori e la nostra mission" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -328,91 +328,16 @@ Chi siamo, quali sono i nostri valori e la nostra mission" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Consulenza tecnica" />
Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liberi messi a disposizione dal free software." />
<meta property="og:description" content="
Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liberi messi a disposizione dal free software." />
<link rel="canonical" href="http://localhost:4000/consulenza/" />
<meta property="og:url" content="http://localhost:4000/consulenza/" />
<link rel="canonical" href="https://www.unitoo.it/consulenza/" />
<meta property="og:url" content="https://www.unitoo.it/consulenza/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.technical_advice","url":"http://localhost:4000/consulenza/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.technical_advice","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.technical_advice","url":"https://www.unitoo.it/consulenza/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.technical_advice","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -147,7 +147,7 @@ Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liber
</div>
</div>
<div class="col-12 col-lg-4 mb-5 mb-lg-0">
<div class="card border-success" style="border-width: 2px;">
<div class="card border-success border-thicker">
<div class="card-body">
<h2>PERFORMANCE</h2>
<i class="fa-star fa-lg mb-4 text-warning"></i>
@ -237,7 +237,7 @@ Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liber
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -246,7 +246,7 @@ Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liber
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -260,91 +260,16 @@ Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liber
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Contatti" />
Tutti i nostri contatti per una comunicazione adeguata e sicura." />
<meta property="og:description" content="
Tutti i nostri contatti per una comunicazione adeguata e sicura." />
<link rel="canonical" href="http://localhost:4000/contattaci/" />
<meta property="og:url" content="http://localhost:4000/contattaci/" />
<link rel="canonical" href="https://www.unitoo.it/contattaci/" />
<meta property="og:url" content="https://www.unitoo.it/contattaci/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.contacts","url":"http://localhost:4000/contattaci/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.contacts","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.contacts","url":"https://www.unitoo.it/contattaci/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.contacts","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -86,7 +86,7 @@ Tutti i nostri contatti per una comunicazione adeguata e sicura." />
<div class="page-content">
<div class="container-main">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
<div class="container pl-0 pr-0 pl-md-3 pr-md-3">
<h1>Ecco come contattarci!</h1>
@ -138,7 +138,7 @@ Tutti i nostri contatti per una comunicazione adeguata e sicura." />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -147,7 +147,7 @@ Tutti i nostri contatti per una comunicazione adeguata e sicura." />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -161,91 +161,16 @@ Tutti i nostri contatti per una comunicazione adeguata e sicura." />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Home" />
Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia ci contraddistinguono" />
<meta property="og:description" content="
Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia ci contraddistinguono" />
<link rel="canonical" href="http://localhost:4000/" />
<meta property="og:url" content="http://localhost:4000/" />
<link rel="canonical" href="https://www.unitoo.it/" />
<meta property="og:url" content="https://www.unitoo.it/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.index","url":"http://localhost:4000/","@type":"WebSite","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.index","name":"Unitoo","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.index","url":"https://www.unitoo.it/","@type":"WebSite","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.index","name":"Unitoo","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -262,7 +262,7 @@ Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -271,7 +271,7 @@ Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -285,91 +285,16 @@ Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ News" />
Le notizie che apprezziamo relative al software libero e allo sviluppo del software in generale" />
<meta property="og:description" content="
Le notizie che apprezziamo relative al software libero e allo sviluppo del software in generale" />
<link rel="canonical" href="http://localhost:4000/news/" />
<meta property="og:url" content="http://localhost:4000/news/" />
<link rel="canonical" href="https://www.unitoo.it/news/" />
<meta property="og:url" content="https://www.unitoo.it/news/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.news","url":"http://localhost:4000/news/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.news","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.news","url":"https://www.unitoo.it/news/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.news","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -170,7 +170,7 @@ Le notizie che apprezziamo relative al software libero e allo sviluppo del softw
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -179,7 +179,7 @@ Le notizie che apprezziamo relative al software libero e allo sviluppo del softw
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -193,91 +193,16 @@ Le notizie che apprezziamo relative al software libero e allo sviluppo del softw
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Partners - Funkwhale Italia" />
Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali" />
<meta property="og:description" content="
Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali" />
<link rel="canonical" href="http://localhost:4000/partners/funkwhale/" />
<meta property="og:url" content="http://localhost:4000/partners/funkwhale/" />
<link rel="canonical" href="https://www.unitoo.it/partners/funkwhale/" />
<meta property="og:url" content="https://www.unitoo.it/partners/funkwhale/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.funkwhale","url":"http://localhost:4000/partners/funkwhale/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.funkwhale","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.funkwhale","url":"https://www.unitoo.it/partners/funkwhale/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.funkwhale","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -86,7 +86,7 @@ Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali
<div class="page-content">
<div class="container-main">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
<h1>Il progetto Funkwhale e il fediverso</h1>
<p>
Riprendendo da un articolo (con link in fondo), possiamo riassumere:
@ -139,7 +139,7 @@ Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -148,7 +148,7 @@ Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -162,91 +162,16 @@ Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Partners - Peertube Italia" />
" />
<meta property="og:description" content="
" />
<link rel="canonical" href="http://localhost:4000/partners/peertube/" />
<meta property="og:url" content="http://localhost:4000/partners/peertube/" />
<link rel="canonical" href="https://www.unitoo.it/partners/peertube/" />
<meta property="og:url" content="https://www.unitoo.it/partners/peertube/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.description.peertube","url":"http://localhost:4000/partners/peertube/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.peertube","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.description.peertube","url":"https://www.unitoo.it/partners/peertube/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.peertube","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -86,7 +86,7 @@ Partners - Peertube Italia" />
<div class="page-content">
<div class="container-main">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3" style="min-height: 500px;">
<section class="container text-center pl-0 pr-0 pl-md-3 pr-md-3 min-height-500" >
<h1>Il progetto Peertube e il fediverso</h1>
<p>
Riprendendo da un articolo (con link in fondo), possiamo riassumere:
@ -137,7 +137,7 @@ Partners - Peertube Italia" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -146,7 +146,7 @@ Partners - Peertube Italia" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -160,91 +160,16 @@ Partners - Peertube Italia" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Informativa privacy" />
La nostra informativa privacy secondo Regolamento Europeo 2016/679" />
<meta property="og:description" content="
La nostra informativa privacy secondo Regolamento Europeo 2016/679" />
<link rel="canonical" href="http://localhost:4000/privacy-policy/" />
<meta property="og:url" content="http://localhost:4000/privacy-policy/" />
<link rel="canonical" href="https://www.unitoo.it/privacy-policy/" />
<meta property="og:url" content="https://www.unitoo.it/privacy-policy/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.privacy_policy","url":"http://localhost:4000/privacy-policy/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.privacy_policy","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.privacy_policy","url":"https://www.unitoo.it/privacy-policy/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.privacy_policy","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -191,7 +191,7 @@ La nostra informativa privacy secondo Regolamento Europeo 2016/679" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -200,7 +200,7 @@ La nostra informativa privacy secondo Regolamento Europeo 2016/679" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -214,91 +214,16 @@ La nostra informativa privacy secondo Regolamento Europeo 2016/679" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Progetti" />
I nostri progetti, per rendere tutti partecipi della nostra Mission." />
<meta property="og:description" content="
I nostri progetti, per rendere tutti partecipi della nostra Mission." />
<link rel="canonical" href="http://localhost:4000/progetti/" />
<meta property="og:url" content="http://localhost:4000/progetti/" />
<link rel="canonical" href="https://www.unitoo.it/progetti/" />
<meta property="og:url" content="https://www.unitoo.it/progetti/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.projects","url":"http://localhost:4000/progetti/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.projects","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.projects","url":"https://www.unitoo.it/progetti/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.projects","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -162,7 +162,7 @@ I nostri progetti, per rendere tutti partecipi della nostra Mission." />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -171,7 +171,7 @@ I nostri progetti, per rendere tutti partecipi della nostra Mission." />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -185,91 +185,16 @@ I nostri progetti, per rendere tutti partecipi della nostra Mission." />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Libreboot - Il BIOS libero" />
" />
<meta property="og:description" content="
" />
<link rel="canonical" href="http://localhost:4000/progetti/libreboot/" />
<meta property="og:url" content="http://localhost:4000/progetti/libreboot/" />
<link rel="canonical" href="https://www.unitoo.it/progetti/libreboot/" />
<meta property="og:url" content="https://www.unitoo.it/progetti/libreboot/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.description.libreboot","url":"http://localhost:4000/progetti/libreboot/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.libreboot","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.description.libreboot","url":"https://www.unitoo.it/progetti/libreboot/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.libreboot","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -164,7 +164,7 @@ Libreboot - Il BIOS libero" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -173,7 +173,7 @@ Libreboot - Il BIOS libero" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -187,91 +187,16 @@ Libreboot - Il BIOS libero" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Il nostro canale" />
Un canale Peertube dedicato al software libero, alle interviste e altri contenuti digitali" />
<meta property="og:description" content="
Un canale Peertube dedicato al software libero, alle interviste e altri contenuti digitali" />
<link rel="canonical" href="http://localhost:4000/progetti/peertube/" />
<meta property="og:url" content="http://localhost:4000/progetti/peertube/" />
<link rel="canonical" href="https://www.unitoo.it/progetti/peertube/" />
<meta property="og:url" content="https://www.unitoo.it/progetti/peertube/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.channel","url":"http://localhost:4000/progetti/peertube/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.channel","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.channel","url":"https://www.unitoo.it/progetti/peertube/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.channel","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -85,7 +85,7 @@ Un canale Peertube dedicato al software libero, alle interviste e altri contenut
<div class="cover header-peertube"></div>
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5" style="min-height: 500px;">
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5 min-height-500">
<h1>Il nostro canale dedicato ai contenuti video</h1>
<p>
Abbiamo deciso di utilizzare ogni mezzo per poter diffondere il messaggio del software libero e dell'etica software e per questo abbiamo istituito un canale Peertube dove troverete interviste, contenuti dedicati al software libero e guide tecniche.
@ -138,7 +138,7 @@ Un canale Peertube dedicato al software libero, alle interviste e altri contenut
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -147,7 +147,7 @@ Un canale Peertube dedicato al software libero, alle interviste e altri contenut
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -161,91 +161,16 @@ Un canale Peertube dedicato al software libero, alle interviste e altri contenut
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ La nostra radio libera" />
La radio italiana per conoscere e diffondere il software libero" />
<meta property="og:description" content="
La radio italiana per conoscere e diffondere il software libero" />
<link rel="canonical" href="http://localhost:4000/progetti/radio/" />
<meta property="og:url" content="http://localhost:4000/progetti/radio/" />
<link rel="canonical" href="https://www.unitoo.it/progetti/radio/" />
<meta property="og:url" content="https://www.unitoo.it/progetti/radio/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.radio","url":"http://localhost:4000/progetti/radio/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.radio","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.radio","url":"https://www.unitoo.it/progetti/radio/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.radio","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -85,7 +85,7 @@ La radio italiana per conoscere e diffondere il software libero" />
<div class="cover header-radio"></div>
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5" style="min-height: 500px;">
<section class="container pl-0 pr-0 pl-md-3 pr-md-3 text-center mt-5 min-height-500" >
<h1>La radio dedicata al software libero</h1>
<p> La diffusione del sofware libero non è di certo una novità per molti, tuttavia i mezzi standard presentano poche opportunità in merito. <br> Noi di Unitoo abbiamo preso a cuore da tempo questo settore, e abbiamo scelto di istituire una radio, con contenuti esclusivamente licenziati Creative Commons, che tratta software libero. <br><br> Tanti programmi settimanali sono già in riproduzione e tanti altri in fase di realizzazione grazie ai nostri speaker freelance! <br><br> <strong>P.S.: Non dimenticate di donare qualcosa ai nostri speaker utilizzando direttamente le loro piattaforme! Il lavoro che stanno svolgendo è qualcosa di eccezionale.</strong> </p>
<hr>
@ -161,7 +161,7 @@ La radio italiana per conoscere e diffondere il software libero" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -170,7 +170,7 @@ La radio italiana per conoscere e diffondere il software libero" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -184,91 +184,16 @@ La radio italiana per conoscere e diffondere il software libero" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Progetti - Il software" />
I progetti che stiamo principalmente supportando nell'ambito del software libero. A partire dai BIOS liberi a finire alla rimozione dei DRM." />
<meta property="og:description" content="
I progetti che stiamo principalmente supportando nell'ambito del software libero. A partire dai BIOS liberi a finire alla rimozione dei DRM." />
<link rel="canonical" href="http://localhost:4000/progetti/software/" />
<meta property="og:url" content="http://localhost:4000/progetti/software/" />
<link rel="canonical" href="https://www.unitoo.it/progetti/software/" />
<meta property="og:url" content="https://www.unitoo.it/progetti/software/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.software","url":"http://localhost:4000/progetti/software/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.software","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.software","url":"https://www.unitoo.it/progetti/software/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.software","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -160,7 +160,7 @@ I progetti che stiamo principalmente supportando nell'ambito del software libero
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -169,7 +169,7 @@ I progetti che stiamo principalmente supportando nell'ambito del software libero
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -183,91 +183,16 @@ I progetti che stiamo principalmente supportando nell'ambito del software libero
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -20,23 +20,23 @@ Servizi e prodotti" />
I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclusivamente software libero" />
<meta property="og:description" content="
I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclusivamente software libero" />
<link rel="canonical" href="http://localhost:4000/servizi-e-prodotti/" />
<meta property="og:url" content="http://localhost:4000/servizi-e-prodotti/" />
<link rel="canonical" href="https://www.unitoo.it/servizi-e-prodotti/" />
<meta property="og:url" content="https://www.unitoo.it/servizi-e-prodotti/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.services_and_products","url":"http://localhost:4000/servizi-e-prodotti/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.services_and_products","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.services_and_products","url":"https://www.unitoo.it/servizi-e-prodotti/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.services_and_products","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -208,7 +208,7 @@ I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclu
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -217,7 +217,7 @@ I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclu
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -231,91 +231,16 @@ I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclu
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>

View file

@ -1,48 +1,48 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://localhost:4000/chisiamo/</loc>
<loc>https://www.unitoo.it/chisiamo/</loc>
</url>
<url>
<loc>http://localhost:4000/progetti/peertube/</loc>
<loc>https://www.unitoo.it/progetti/peertube/</loc>
</url>
<url>
<loc>http://localhost:4000/contattaci/</loc>
<loc>https://www.unitoo.it/contattaci/</loc>
</url>
<url>
<loc>http://localhost:4000/partners/funkwhale/</loc>
<loc>https://www.unitoo.it/partners/funkwhale/</loc>
</url>
<url>
<loc>http://localhost:4000/progetti/libreboot/</loc>
<loc>https://www.unitoo.it/progetti/libreboot/</loc>
</url>
<url>
<loc>http://localhost:4000/news/</loc>
<loc>https://www.unitoo.it/news/</loc>
</url>
<url>
<loc>http://localhost:4000/partners/peertube/</loc>
<loc>https://www.unitoo.it/partners/peertube/</loc>
</url>
<url>
<loc>http://localhost:4000/privacy-policy/</loc>
<loc>https://www.unitoo.it/privacy-policy/</loc>
</url>
<url>
<loc>http://localhost:4000/progetti/</loc>
<loc>https://www.unitoo.it/progetti/</loc>
</url>
<url>
<loc>http://localhost:4000/progetti/radio/</loc>
<loc>https://www.unitoo.it/progetti/radio/</loc>
</url>
<url>
<loc>http://localhost:4000/servizi-e-prodotti/</loc>
<loc>https://www.unitoo.it/servizi-e-prodotti/</loc>
</url>
<url>
<loc>http://localhost:4000/tecnologie-software/</loc>
<loc>https://www.unitoo.it/tecnologie-software/</loc>
</url>
<url>
<loc>http://localhost:4000/progetti/software/</loc>
<loc>https://www.unitoo.it/progetti/software/</loc>
</url>
<url>
<loc>http://localhost:4000/consulenza/</loc>
<loc>https://www.unitoo.it/consulenza/</loc>
</url>
<url>
<loc>http://localhost:4000/</loc>
<loc>https://www.unitoo.it/</loc>
</url>
</urlset>

View file

@ -20,23 +20,23 @@ Le tecnologie software" />
Quali tecnologie software utilizziamo e in che modo le integriamo fra loro" />
<meta property="og:description" content="
Quali tecnologie software utilizziamo e in che modo le integriamo fra loro" />
<link rel="canonical" href="http://localhost:4000/tecnologie-software/" />
<meta property="og:url" content="http://localhost:4000/tecnologie-software/" />
<link rel="canonical" href="https://www.unitoo.it/tecnologie-software/" />
<meta property="og:url" content="https://www.unitoo.it/tecnologie-software/" />
<meta property="og:site_name" content="Unitoo" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@UnitooInc" />
<meta name="twitter:creator" content="@Unitoo" />
<script type="application/ld+json">
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.software_technologies","url":"http://localhost:4000/tecnologie-software/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.software_technologies","@context":"https://schema.org"}</script>
{"author":{"@type":"Person","name":"Unitoo"},"description":"meta.descriptions.software_technologies","url":"https://www.unitoo.it/tecnologie-software/","@type":"WebPage","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"},"name":"Unitoo"},"headline":"meta.titles.software_technologies","@context":"https://schema.org"}</script>
<!-- End Jekyll SEO tag -->
<link rel='icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="http://localhost:4000/apple-touch-icon.png">
<link rel="manifest" href="http://localhost:4000/path.webmanifest">
<link rel='icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel='shortcut icon' href="https://www.unitoo.it/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" href="https://www.unitoo.it/apple-touch-icon.png">
<link rel="manifest" href="https://www.unitoo.it/path.webmanifest">
<link rel="stylesheet" type="text/css" href="/assets/main-2fe671065eca045418248e501b5b906bb8e531f04f4f12de1f6f7283fd114781c2c5ffa98b25310a61eb12c657bc4c872049fe23799e4c6d4d55f0591c07cc33.css">
<link rel="stylesheet" type="text/css" href="/assets/main-fe639bd015d8afef9da7a887dccd8266cdbcfa5ed73ae7d4437caebbf70030322880cd94769b1f9508f72f793d336caf70796d91c81a1a9b7a6ec30eb8a30d41.css">
@ -179,7 +179,7 @@ Quali tecnologie software utilizziamo e in che modo le integriamo fra loro" />
</li>
<li class="list-inline-item">
<a href="https://mastodon.uno/@unitoo" rel="me" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
<img width="20" alt="Logo ufficiale di Mastodon, rete social di microblogging decentralizzata" src="/assets/mastodon-448a0e1cefce72f1aadd521b2ca3d7c5edf2f76fd6aa12f1ac11bdf07f5e92f586fb517e5f76bbcd5b5d79c430b26261443dd6e06dca5fa25ac423d61025a916.webp">
</a>
</li>
<li class="list-inline-item">
@ -188,7 +188,7 @@ Quali tecnologie software utilizziamo e in che modo le integriamo fra loro" />
</a>
</li>
<li class="list-inline-item"><a href="https://liberapay.com/Unitoo/" rel="nofollow" target="_blank" data-original-title="" title="">
<img width="20" style="margin-top: -3px;" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
<img width="20" alt="Logo ufficiale di Liberapay" src="/assets/liberapay-a7f315ef8f959d993dfc27372fc0f25a9f41a964e4a1a6996cff2befd1a49d4ce10b5bb689f6b8e52c9f2a199691f905c2efd1634390096efb85597ae795fb82.webp">
</a></li>
</ul>
@ -202,91 +202,16 @@ Quali tecnologie software utilizziamo e in che modo le integriamo fra loro" />
</footer>
<script type="text/javascript" src="/assets/main-d66ae911e9baad27bf76fc31381210c21520c7629933b57d51cdb1fd775a286a935a4fe93937373ab23db4f0540f2116724a47cd8d4a0656e33b613a81e6fbf5.js"></script>
<!-- Matomo -->
<script defer="true" type="text/javascript">
var _paq = window._paq || [];
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
_paq.push(['requireConsent']);
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//analytics.unitoo.it/";
_paq.push(['setTrackerUrl', u+'matomo.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+'matomo.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<!-- End Matomo Code -->
<!--Track mailto-->
<script defer="true">
jQuery(document).ready(function($) {
$("a[href^='mailto:']").on("click", function (e) {
_paq.push(['trackGoal', 1]);
});
});
</script>
<!--End Track mailto-->
<script type="text/javascript" src="/assets/main-35d7d6dbfc977418f6c3f9bf8d106043e8be917705ff5072433d69f0f740df5a0629316cf0008f86ae6b914615ed3cf132a2d70d08e03aa668f02edc448ccf33.js"></script>
<script defer type="text/javascript" src="/assets/matomo-e22ca7e67d739b9d97e291b31a7afdf4adebbe7d108019d41a7320920d4eb2aa3888f5577535aad610959cca4c6d71d02e7ae9a73319ecb8be5c3378150509db.js"></script>
<style>
#cookie-notice {padding: 0.5rem 1rem; display: none; text-align: center; position: fixed; bottom: 0; width: calc(100% - 2rem); background: #222; color: rgba(255,255,255,0.8);}
#cookie-notice a {display: inline-block; cursor: pointer; margin-left: 0.5rem;}
@media (max-width: 767px) {
#cookie-notice span {display: block; padding-top: 3px; margin-bottom: 1rem;}
#cookie-notice a {position: relative; bottom: 4px;}
}
</style>
<div id="cookie-notice"><span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span><a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a><a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a><a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a></div>
<script>
function createCookie(name,value,days) {
var expires = "";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days*24*60*60*1000));
expires = "; expires=" + date.toUTCString();
}
document.cookie = name + "=" + value + expires + "; path=/";
}
function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' ') c = c.substring(1,c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
}
return null;
}
function eraseCookie(name) {
createCookie(name,"",-1);
}
if(readCookie('cookie-notice-dismissed')=='true') {
console.log("GDPR Consent Missing");
} else {
document.getElementById('cookie-notice').style.display = 'block';
}
document.getElementById('cookie-notice-accept').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['rememberConsentGiven']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
document.getElementById('cookie-notice-dismiss').addEventListener("click",function() {
createCookie('cookie-notice-dismissed','true',31);
_paq.push(['forgetConsentGiven']);
_paq.push(['optUserOut']);
document.getElementById('cookie-notice').style.display = 'none';
location.reload();
});
</script>
<div id="cookie-notice">
<span>Utilizziamo Matomo (una tecnologia libera) per analizzare e migliorare il servizio che offriamo.</span>
<a id="cookie-notice-accept" class="btn btn-primary btn-sm text-white">Approva</a>
<a href="https://matomo.org/gdpr/" rel="nofollow" target="_blank" class="btn btn-primary btn-sm text-white">Scopri di più</a>
<a id="cookie-notice-dismiss" class="mt-1 float-right text-decoration-none border border-secondary rounded btn btn-sm btn-secondary text-white">X</a>
</div>
</body>