forked from unitoo/website
Merge branch 'master' into 'master'
Master See merge request unitoo/websites/unitoo-site!70
This commit is contained in:
commit
c9479ee746
69 changed files with 258 additions and 66 deletions
|
@ -18,7 +18,7 @@
|
|||
@import 'bootstrap/forms';
|
||||
@import 'bootstrap/buttons';
|
||||
// @import 'bootstrap/transitions';
|
||||
// @import 'bootstrap/dropdown';
|
||||
@import 'bootstrap/dropdown';
|
||||
// @import 'bootstrap/button-group';
|
||||
@import 'bootstrap/input-group';
|
||||
// @import 'bootstrap/custom-forms';
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/404.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -18,7 +18,7 @@
|
|||
@import 'bootstrap/forms';
|
||||
@import 'bootstrap/buttons';
|
||||
// @import 'bootstrap/transitions';
|
||||
// @import 'bootstrap/dropdown';
|
||||
@import 'bootstrap/dropdown';
|
||||
// @import 'bootstrap/button-group';
|
||||
@import 'bootstrap/input-group';
|
||||
// @import 'bootstrap/custom-forms';
|
||||
|
|
|
@ -0,0 +1,192 @@
|
|||
// The dropdown wrapper (`<div>`)
|
||||
.dropup,
|
||||
.dropright,
|
||||
.dropdown,
|
||||
.dropleft {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
white-space: nowrap;
|
||||
|
||||
// Generate the caret automatically
|
||||
@include caret();
|
||||
}
|
||||
|
||||
// The dropdown menu
|
||||
.dropdown-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
z-index: $zindex-dropdown;
|
||||
display: none; // none by default, but block on "open" of the menu
|
||||
float: left;
|
||||
min-width: $dropdown-min-width;
|
||||
padding: $dropdown-padding-y $dropdown-padding-x;
|
||||
margin: $dropdown-spacer 0 0; // override default ul
|
||||
@include font-size($dropdown-font-size);
|
||||
color: $dropdown-color;
|
||||
text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
|
||||
list-style: none;
|
||||
background-color: $dropdown-bg;
|
||||
background-clip: padding-box;
|
||||
border: $dropdown-border-width solid $dropdown-border-color;
|
||||
@include border-radius($dropdown-border-radius);
|
||||
@include box-shadow($dropdown-box-shadow);
|
||||
}
|
||||
|
||||
@each $breakpoint in map-keys($grid-breakpoints) {
|
||||
@include media-breakpoint-up($breakpoint) {
|
||||
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
|
||||
|
||||
.dropdown-menu#{$infix}-left {
|
||||
right: auto;
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.dropdown-menu#{$infix}-right {
|
||||
right: 0;
|
||||
left: auto;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Allow for dropdowns to go bottom up (aka, dropup-menu)
|
||||
// Just add .dropup after the standard .dropdown class and you're set.
|
||||
.dropup {
|
||||
.dropdown-menu {
|
||||
top: auto;
|
||||
bottom: 100%;
|
||||
margin-top: 0;
|
||||
margin-bottom: $dropdown-spacer;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
@include caret(up);
|
||||
}
|
||||
}
|
||||
|
||||
.dropright {
|
||||
.dropdown-menu {
|
||||
top: 0;
|
||||
right: auto;
|
||||
left: 100%;
|
||||
margin-top: 0;
|
||||
margin-left: $dropdown-spacer;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
@include caret(right);
|
||||
&::after {
|
||||
vertical-align: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropleft {
|
||||
.dropdown-menu {
|
||||
top: 0;
|
||||
right: 100%;
|
||||
left: auto;
|
||||
margin-top: 0;
|
||||
margin-right: $dropdown-spacer;
|
||||
}
|
||||
|
||||
.dropdown-toggle {
|
||||
@include caret(left);
|
||||
&::before {
|
||||
vertical-align: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// When Popper is enabled, reset the basic dropdown position
|
||||
// stylelint-disable-next-line no-duplicate-selectors
|
||||
.dropdown-menu {
|
||||
&[x-placement^="top"],
|
||||
&[x-placement^="right"],
|
||||
&[x-placement^="bottom"],
|
||||
&[x-placement^="left"] {
|
||||
right: auto;
|
||||
bottom: auto;
|
||||
}
|
||||
}
|
||||
|
||||
// Dividers (basically an `<hr>`) within the dropdown
|
||||
.dropdown-divider {
|
||||
@include nav-divider($dropdown-divider-bg, $dropdown-divider-margin-y, true);
|
||||
}
|
||||
|
||||
// Links, buttons, and more within the dropdown menu
|
||||
//
|
||||
// `<button>`-specific styles are denoted with `// For <button>s`
|
||||
.dropdown-item {
|
||||
display: block;
|
||||
width: 100%; // For `<button>`s
|
||||
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
||||
clear: both;
|
||||
font-weight: $font-weight-normal;
|
||||
color: $dropdown-link-color;
|
||||
text-align: inherit; // For `<button>`s
|
||||
text-decoration: if($link-decoration == none, null, none);
|
||||
white-space: nowrap; // prevent links from randomly breaking onto new lines
|
||||
background-color: transparent; // For `<button>`s
|
||||
border: 0; // For `<button>`s
|
||||
|
||||
// Prevent dropdown overflow if there's no padding
|
||||
// See https://github.com/twbs/bootstrap/pull/27703
|
||||
@if $dropdown-padding-y == 0 {
|
||||
&:first-child {
|
||||
@include border-top-radius($dropdown-inner-border-radius);
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
@include border-bottom-radius($dropdown-inner-border-radius);
|
||||
}
|
||||
}
|
||||
|
||||
@include hover-focus() {
|
||||
color: $dropdown-link-hover-color;
|
||||
text-decoration: none;
|
||||
@include gradient-bg($dropdown-link-hover-bg);
|
||||
}
|
||||
|
||||
&.active,
|
||||
&:active {
|
||||
color: $dropdown-link-active-color;
|
||||
text-decoration: none;
|
||||
@include gradient-bg($dropdown-link-active-bg);
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
&:disabled {
|
||||
color: $dropdown-link-disabled-color;
|
||||
pointer-events: none;
|
||||
background-color: transparent;
|
||||
// Remove CSS gradients if they're enabled
|
||||
@if $enable-gradients {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.dropdown-menu.show {
|
||||
display: block;
|
||||
}
|
||||
|
||||
// Dropdown section headers
|
||||
.dropdown-header {
|
||||
display: block;
|
||||
padding: $dropdown-header-padding;
|
||||
margin-bottom: 0; // for use with heading elements
|
||||
@include font-size($font-size-sm);
|
||||
color: $dropdown-header-color;
|
||||
white-space: nowrap; // as with > li > a
|
||||
}
|
||||
|
||||
// Dropdown text
|
||||
.dropdown-item-text {
|
||||
display: block;
|
||||
padding: $dropdown-item-padding-y $dropdown-item-padding-x;
|
||||
color: $dropdown-link-color;
|
||||
}
|
File diff suppressed because one or more lines are too long
|
@ -32,7 +32,7 @@ Chi siamo, quali sono i nostri valori e la nostra mission" />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/chisiamo/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Consulenza tecnica nell'ambito GNU/Linux, utilizzando i migliori strumenti liber
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/consulenza/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Tutti i nostri contatti per una comunicazione adeguata e sicura." />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/contattaci/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Sviluppiamo software e facciamo consulenza IT. Etica, concretezza ed avanguardia
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Una piattaforma libera, che supportiamo, per la diffusione di contenuti musicali
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/partners/funkwhale/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Partners - Peertube Italia" />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/partners/peertube/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ I nostri progetti, per rendere tutti partecipi della nostra Mission." />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/progetti/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Libreboot - Il BIOS libero" />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/progetti/libreboot/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Un canale Peertube dedicato al software libero, alle interviste e altri contenut
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/progetti/peertube/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ La radio italiana per conoscere e diffondere il software libero" />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/progetti/radio/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ I progetti che stiamo principalmente supportando nell'ambito del software libero
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/progetti/software/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ I servizi ed i prodotti che principalmente offriamo, utilizzando sempre ed esclu
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/servizi_e_prodotti/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/aboutus.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/azuracast.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/bios.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/calendar.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/chisiamo.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/cloud.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/company.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/consulenza.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/contacts.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/contatti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/coreboot.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/creativecommons.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/development.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/dnsserver.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/email.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/filestorage.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freebios.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freedom.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freesoftware.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/funkwhale.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/gnupg.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/hardware.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/informatica.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/interviste.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/libreboot.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/licenses.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/music.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/nextcloud.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/nodrm.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/partners.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/peertube.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/pihole.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/podcast.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/prodotti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/products.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/progetti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/projects.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/radio.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/rights.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/services.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/servizi.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/sicurezza.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/software.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/team.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/technicaladvice.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/unitoo.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/video.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
|
@ -32,7 +32,7 @@ Le tecnologie software" />
|
|||
<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/favicon-192.png" sizes="192x192">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-40fe3abdcdf204c11afa9c12a09e61b83b6c2620c1d34c22a6250bb111e9c9d59fa7ab645af0d9b3891d24e72ab6d359952f9c6fecae5d72643d25e09faca36c.css">
|
||||
<link rel="stylesheet" type="text/css" href="/assets/main-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="https://www.unitoo.it/tecnologie_software/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
|
Loading…
Reference in a new issue