Build PRODUCTION
This commit is contained in:
parent
150d8a1674
commit
75ccdee712
67 changed files with 682 additions and 490 deletions
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Azienda dedicata allo sviluppo software, alla consulenza informatica e alla formazione","headline":"Unitoo","@type":"WebPage","url":"http://localhost:4000/404.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Azienda dedicata allo sviluppo software, alla consulenza informatica e alla formazione","headline":"Unitoo","@type":"WebPage","url":"https://www.unitoo.it/404.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/404.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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.
|
@ -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;
|
||||
}
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.aboutus","headline":"meta.titles.aboutus","@type":"WebPage","url":"http://localhost:4000/chisiamo/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.aboutus","headline":"meta.titles.aboutus","@type":"WebPage","url":"https://www.unitoo.it/chisiamo/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/chisiamo/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.technical_advice","headline":"meta.titles.technical_advice","@type":"WebPage","url":"http://localhost:4000/consulenza/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.technical_advice","headline":"meta.titles.technical_advice","@type":"WebPage","url":"https://www.unitoo.it/consulenza/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/consulenza/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.contacts","headline":"meta.titles.contacts","@type":"WebPage","url":"http://localhost:4000/contattaci/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.contacts","headline":"meta.titles.contacts","@type":"WebPage","url":"https://www.unitoo.it/contattaci/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/contattaci/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.index","headline":"meta.titles.index","@type":"WebSite","url":"http://localhost:4000/","name":"Unitoo","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.index","headline":"meta.titles.index","@type":"WebSite","url":"https://www.unitoo.it/","name":"Unitoo","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<link rel="canonical" href="https://www.unitoo.it/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="https://www.unitoo.it/feed.xml">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.funkwhale","headline":"meta.titles.funkwhale","@type":"WebPage","url":"http://localhost:4000/partners/funkwhale/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.funkwhale","headline":"meta.titles.funkwhale","@type":"WebPage","url":"https://www.unitoo.it/partners/funkwhale/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/partners/funkwhale/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.description.peertube","headline":"meta.titles.peertube","@type":"WebPage","url":"http://localhost:4000/partners/peertube/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.description.peertube","headline":"meta.titles.peertube","@type":"WebPage","url":"https://www.unitoo.it/partners/peertube/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/partners/peertube/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.projects","headline":"meta.titles.projects","@type":"WebPage","url":"http://localhost:4000/progetti/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.projects","headline":"meta.titles.projects","@type":"WebPage","url":"https://www.unitoo.it/progetti/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/progetti/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.description.libreboot","headline":"meta.titles.libreboot","@type":"WebPage","url":"http://localhost:4000/progetti/libreboot/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.description.libreboot","headline":"meta.titles.libreboot","@type":"WebPage","url":"https://www.unitoo.it/progetti/libreboot/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/progetti/libreboot/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.channel","headline":"meta.titles.channel","@type":"WebPage","url":"http://localhost:4000/progetti/peertube/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.channel","headline":"meta.titles.channel","@type":"WebPage","url":"https://www.unitoo.it/progetti/peertube/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/progetti/peertube/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.radio","headline":"meta.titles.radio","@type":"WebPage","url":"http://localhost:4000/progetti/radio/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.radio","headline":"meta.titles.radio","@type":"WebPage","url":"https://www.unitoo.it/progetti/radio/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/progetti/radio/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.software","headline":"meta.titles.software","@type":"WebPage","url":"http://localhost:4000/progetti/software/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.software","headline":"meta.titles.software","@type":"WebPage","url":"https://www.unitoo.it/progetti/software/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/progetti/software/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.services_and_products","headline":"meta.titles.services_and_products","@type":"WebPage","url":"http://localhost:4000/servizi_e_prodotti/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.services_and_products","headline":"meta.titles.services_and_products","@type":"WebPage","url":"https://www.unitoo.it/servizi_e_prodotti/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/servizi_e_prodotti/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,187 +1,187 @@
|
|||
<?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/partners/peertube/</loc>
|
||||
<loc>https://www.unitoo.it/partners/peertube/</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/tag/aboutus.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/aboutus.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/azuracast.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/azuracast.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/bios.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/bios.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/calendar.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/calendar.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/chisiamo.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/chisiamo.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/cloud.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/cloud.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/company.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/company.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/consulenza.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/consulenza.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/contacts.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/contacts.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/contatti.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/contatti.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/coreboot.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/coreboot.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/creativecommons.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/creativecommons.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/development.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/development.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/dnsserver.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/dnsserver.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/email.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/email.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/filestorage.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/filestorage.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/freebios.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/freebios.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/freedom.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/freedom.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/freesoftware.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/freesoftware.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/funkwhale.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/funkwhale.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/gnupg.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/gnupg.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/hardware.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/hardware.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/</loc>
|
||||
<loc>https://www.unitoo.it/</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/informatica.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/informatica.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/interviste.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/interviste.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/libreboot.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/libreboot.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/licenses.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/licenses.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/music.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/music.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/nextcloud.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/nextcloud.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/nodrm.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/nodrm.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/partners.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/partners.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/peertube.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/peertube.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/pihole.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/pihole.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/podcast.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/podcast.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/prodotti.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/prodotti.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/products.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/products.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/progetti.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/progetti.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/projects.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/projects.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/radio.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/radio.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/rights.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/rights.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/services.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/services.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/servizi.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/servizi.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/sicurezza.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/sicurezza.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/software.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/software.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/team.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/team.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/technicaladvice.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/technicaladvice.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/unitoo.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/unitoo.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/tag/video.html</loc>
|
||||
<loc>https://www.unitoo.it/tag/video.html</loc>
|
||||
</url>
|
||||
<url>
|
||||
<loc>http://localhost:4000/privacy.pdf</loc>
|
||||
<loc>https://www.unitoo.it/privacy.pdf</loc>
|
||||
<lastmod>2021-06-14T23:24:51+02:00</lastmod>
|
||||
</url>
|
||||
</urlset>
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/aboutus.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/aboutus.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/aboutus.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/aboutus.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: aboutus","headline":"Tag: #aboutus","@type":"WebPage","url":"http://localhost:4000/tag/aboutus.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: aboutus","headline":"Tag: #aboutus","@type":"WebPage","url":"https://www.unitoo.it/tag/aboutus.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/aboutus.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/azuracast.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/azuracast.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/azuracast.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/azuracast.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: azuracast","headline":"Tag: #azuracast","@type":"WebPage","url":"http://localhost:4000/tag/azuracast.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: azuracast","headline":"Tag: #azuracast","@type":"WebPage","url":"https://www.unitoo.it/tag/azuracast.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/azuracast.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/bios.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/bios.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/bios.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/bios.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: bios","headline":"Tag: #bios","@type":"WebPage","url":"http://localhost:4000/tag/bios.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: bios","headline":"Tag: #bios","@type":"WebPage","url":"https://www.unitoo.it/tag/bios.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/bios.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/calendar.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/calendar.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/calendar.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/calendar.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: calendar","headline":"Tag: #calendar","@type":"WebPage","url":"http://localhost:4000/tag/calendar.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: calendar","headline":"Tag: #calendar","@type":"WebPage","url":"https://www.unitoo.it/tag/calendar.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/calendar.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/chisiamo.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/chisiamo.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/chisiamo.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/chisiamo.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: chisiamo","headline":"Tag: #chisiamo","@type":"WebPage","url":"http://localhost:4000/tag/chisiamo.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: chisiamo","headline":"Tag: #chisiamo","@type":"WebPage","url":"https://www.unitoo.it/tag/chisiamo.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/chisiamo.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/cloud.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/cloud.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/cloud.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/cloud.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: cloud","headline":"Tag: #cloud","@type":"WebPage","url":"http://localhost:4000/tag/cloud.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: cloud","headline":"Tag: #cloud","@type":"WebPage","url":"https://www.unitoo.it/tag/cloud.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/cloud.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/company.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/company.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/company.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/company.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: company","headline":"Tag: #company","@type":"WebPage","url":"http://localhost:4000/tag/company.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: company","headline":"Tag: #company","@type":"WebPage","url":"https://www.unitoo.it/tag/company.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/company.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/consulenza.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/consulenza.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/consulenza.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/consulenza.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: consulenza","headline":"Tag: #consulenza","@type":"WebPage","url":"http://localhost:4000/tag/consulenza.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: consulenza","headline":"Tag: #consulenza","@type":"WebPage","url":"https://www.unitoo.it/tag/consulenza.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/consulenza.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/contacts.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/contacts.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/contacts.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/contacts.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: contacts","headline":"Tag: #contacts","@type":"WebPage","url":"http://localhost:4000/tag/contacts.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: contacts","headline":"Tag: #contacts","@type":"WebPage","url":"https://www.unitoo.it/tag/contacts.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/contacts.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/contatti.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/contatti.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/contatti.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/contatti.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: contatti","headline":"Tag: #contatti","@type":"WebPage","url":"http://localhost:4000/tag/contatti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: contatti","headline":"Tag: #contatti","@type":"WebPage","url":"https://www.unitoo.it/tag/contatti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/contatti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/coreboot.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/coreboot.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/coreboot.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/coreboot.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: coreboot","headline":"Tag: #coreboot","@type":"WebPage","url":"http://localhost:4000/tag/coreboot.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: coreboot","headline":"Tag: #coreboot","@type":"WebPage","url":"https://www.unitoo.it/tag/coreboot.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/coreboot.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/creativecommons.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/creativecommons.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/creativecommons.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/creativecommons.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: creativecommons","headline":"Tag: #creativecommons","@type":"WebPage","url":"http://localhost:4000/tag/creativecommons.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: creativecommons","headline":"Tag: #creativecommons","@type":"WebPage","url":"https://www.unitoo.it/tag/creativecommons.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/creativecommons.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/development.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/development.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/development.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/development.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: development","headline":"Tag: #development","@type":"WebPage","url":"http://localhost:4000/tag/development.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: development","headline":"Tag: #development","@type":"WebPage","url":"https://www.unitoo.it/tag/development.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/development.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/dnsserver.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/dnsserver.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/dnsserver.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/dnsserver.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: dnsserver","headline":"Tag: #dnsserver","@type":"WebPage","url":"http://localhost:4000/tag/dnsserver.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: dnsserver","headline":"Tag: #dnsserver","@type":"WebPage","url":"https://www.unitoo.it/tag/dnsserver.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/dnsserver.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/email.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/email.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/email.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/email.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: email","headline":"Tag: #email","@type":"WebPage","url":"http://localhost:4000/tag/email.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: email","headline":"Tag: #email","@type":"WebPage","url":"https://www.unitoo.it/tag/email.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/email.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/filestorage.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/filestorage.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/filestorage.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/filestorage.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: filestorage","headline":"Tag: #filestorage","@type":"WebPage","url":"http://localhost:4000/tag/filestorage.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: filestorage","headline":"Tag: #filestorage","@type":"WebPage","url":"https://www.unitoo.it/tag/filestorage.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/filestorage.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freebios.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/freebios.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freebios.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/freebios.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: freebios","headline":"Tag: #freebios","@type":"WebPage","url":"http://localhost:4000/tag/freebios.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: freebios","headline":"Tag: #freebios","@type":"WebPage","url":"https://www.unitoo.it/tag/freebios.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freebios.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freedom.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/freedom.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freedom.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/freedom.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: freedom","headline":"Tag: #freedom","@type":"WebPage","url":"http://localhost:4000/tag/freedom.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: freedom","headline":"Tag: #freedom","@type":"WebPage","url":"https://www.unitoo.it/tag/freedom.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freedom.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freesoftware.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/freesoftware.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/freesoftware.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/freesoftware.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: freesoftware","headline":"Tag: #freesoftware","@type":"WebPage","url":"http://localhost:4000/tag/freesoftware.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: freesoftware","headline":"Tag: #freesoftware","@type":"WebPage","url":"https://www.unitoo.it/tag/freesoftware.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/freesoftware.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/funkwhale.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/funkwhale.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/funkwhale.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/funkwhale.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: funkwhale","headline":"Tag: #funkwhale","@type":"WebPage","url":"http://localhost:4000/tag/funkwhale.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: funkwhale","headline":"Tag: #funkwhale","@type":"WebPage","url":"https://www.unitoo.it/tag/funkwhale.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/funkwhale.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/gnupg.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/gnupg.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/gnupg.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/gnupg.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: gnupg","headline":"Tag: #gnupg","@type":"WebPage","url":"http://localhost:4000/tag/gnupg.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: gnupg","headline":"Tag: #gnupg","@type":"WebPage","url":"https://www.unitoo.it/tag/gnupg.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/gnupg.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/hardware.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/hardware.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/hardware.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/hardware.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: hardware","headline":"Tag: #hardware","@type":"WebPage","url":"http://localhost:4000/tag/hardware.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: hardware","headline":"Tag: #hardware","@type":"WebPage","url":"https://www.unitoo.it/tag/hardware.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/hardware.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/informatica.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/informatica.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/informatica.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/informatica.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: informatica","headline":"Tag: #informatica","@type":"WebPage","url":"http://localhost:4000/tag/informatica.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: informatica","headline":"Tag: #informatica","@type":"WebPage","url":"https://www.unitoo.it/tag/informatica.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/informatica.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/interviste.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/interviste.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/interviste.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/interviste.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: interviste","headline":"Tag: #interviste","@type":"WebPage","url":"http://localhost:4000/tag/interviste.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: interviste","headline":"Tag: #interviste","@type":"WebPage","url":"https://www.unitoo.it/tag/interviste.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/interviste.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/libreboot.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/libreboot.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/libreboot.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/libreboot.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: libreboot","headline":"Tag: #libreboot","@type":"WebPage","url":"http://localhost:4000/tag/libreboot.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: libreboot","headline":"Tag: #libreboot","@type":"WebPage","url":"https://www.unitoo.it/tag/libreboot.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/libreboot.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/licenses.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/licenses.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/licenses.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/licenses.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: licenses","headline":"Tag: #licenses","@type":"WebPage","url":"http://localhost:4000/tag/licenses.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: licenses","headline":"Tag: #licenses","@type":"WebPage","url":"https://www.unitoo.it/tag/licenses.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/licenses.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/music.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/music.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/music.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/music.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: music","headline":"Tag: #music","@type":"WebPage","url":"http://localhost:4000/tag/music.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: music","headline":"Tag: #music","@type":"WebPage","url":"https://www.unitoo.it/tag/music.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/music.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/nextcloud.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/nextcloud.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/nextcloud.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/nextcloud.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: nextcloud","headline":"Tag: #nextcloud","@type":"WebPage","url":"http://localhost:4000/tag/nextcloud.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: nextcloud","headline":"Tag: #nextcloud","@type":"WebPage","url":"https://www.unitoo.it/tag/nextcloud.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/nextcloud.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/nodrm.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/nodrm.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/nodrm.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/nodrm.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: nodrm","headline":"Tag: #nodrm","@type":"WebPage","url":"http://localhost:4000/tag/nodrm.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: nodrm","headline":"Tag: #nodrm","@type":"WebPage","url":"https://www.unitoo.it/tag/nodrm.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/nodrm.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/partners.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/partners.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/partners.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/partners.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: partners","headline":"Tag: #partners","@type":"WebPage","url":"http://localhost:4000/tag/partners.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: partners","headline":"Tag: #partners","@type":"WebPage","url":"https://www.unitoo.it/tag/partners.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/partners.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/peertube.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/peertube.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/peertube.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/peertube.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: peertube","headline":"Tag: #peertube","@type":"WebPage","url":"http://localhost:4000/tag/peertube.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: peertube","headline":"Tag: #peertube","@type":"WebPage","url":"https://www.unitoo.it/tag/peertube.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/peertube.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/pihole.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/pihole.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/pihole.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/pihole.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: pihole","headline":"Tag: #pihole","@type":"WebPage","url":"http://localhost:4000/tag/pihole.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: pihole","headline":"Tag: #pihole","@type":"WebPage","url":"https://www.unitoo.it/tag/pihole.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/pihole.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/podcast.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/podcast.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/podcast.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/podcast.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: podcast","headline":"Tag: #podcast","@type":"WebPage","url":"http://localhost:4000/tag/podcast.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: podcast","headline":"Tag: #podcast","@type":"WebPage","url":"https://www.unitoo.it/tag/podcast.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/podcast.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/prodotti.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/prodotti.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/prodotti.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/prodotti.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: prodotti","headline":"Tag: #prodotti","@type":"WebPage","url":"http://localhost:4000/tag/prodotti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: prodotti","headline":"Tag: #prodotti","@type":"WebPage","url":"https://www.unitoo.it/tag/prodotti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/prodotti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/products.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/products.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/products.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/products.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: products","headline":"Tag: #products","@type":"WebPage","url":"http://localhost:4000/tag/products.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: products","headline":"Tag: #products","@type":"WebPage","url":"https://www.unitoo.it/tag/products.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/products.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/progetti.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/progetti.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/progetti.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/progetti.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: progetti","headline":"Tag: #progetti","@type":"WebPage","url":"http://localhost:4000/tag/progetti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: progetti","headline":"Tag: #progetti","@type":"WebPage","url":"https://www.unitoo.it/tag/progetti.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/progetti.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/projects.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/projects.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/projects.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/projects.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: projects","headline":"Tag: #projects","@type":"WebPage","url":"http://localhost:4000/tag/projects.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: projects","headline":"Tag: #projects","@type":"WebPage","url":"https://www.unitoo.it/tag/projects.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/projects.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/radio.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/radio.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/radio.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/radio.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: radio","headline":"Tag: #radio","@type":"WebPage","url":"http://localhost:4000/tag/radio.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: radio","headline":"Tag: #radio","@type":"WebPage","url":"https://www.unitoo.it/tag/radio.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/radio.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/rights.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/rights.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/rights.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/rights.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: rights","headline":"Tag: #rights","@type":"WebPage","url":"http://localhost:4000/tag/rights.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: rights","headline":"Tag: #rights","@type":"WebPage","url":"https://www.unitoo.it/tag/rights.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/rights.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/services.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/services.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/services.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/services.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: services","headline":"Tag: #services","@type":"WebPage","url":"http://localhost:4000/tag/services.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: services","headline":"Tag: #services","@type":"WebPage","url":"https://www.unitoo.it/tag/services.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/services.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/servizi.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/servizi.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/servizi.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/servizi.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: servizi","headline":"Tag: #servizi","@type":"WebPage","url":"http://localhost:4000/tag/servizi.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: servizi","headline":"Tag: #servizi","@type":"WebPage","url":"https://www.unitoo.it/tag/servizi.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/servizi.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/sicurezza.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/sicurezza.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/sicurezza.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/sicurezza.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: sicurezza","headline":"Tag: #sicurezza","@type":"WebPage","url":"http://localhost:4000/tag/sicurezza.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: sicurezza","headline":"Tag: #sicurezza","@type":"WebPage","url":"https://www.unitoo.it/tag/sicurezza.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/sicurezza.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/software.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/software.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/software.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/software.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: software","headline":"Tag: #software","@type":"WebPage","url":"http://localhost:4000/tag/software.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: software","headline":"Tag: #software","@type":"WebPage","url":"https://www.unitoo.it/tag/software.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/software.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/team.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/team.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/team.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/team.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: team","headline":"Tag: #team","@type":"WebPage","url":"http://localhost:4000/tag/team.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: team","headline":"Tag: #team","@type":"WebPage","url":"https://www.unitoo.it/tag/team.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/team.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/technicaladvice.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/technicaladvice.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/technicaladvice.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/technicaladvice.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: technicaladvice","headline":"Tag: #technicaladvice","@type":"WebPage","url":"http://localhost:4000/tag/technicaladvice.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: technicaladvice","headline":"Tag: #technicaladvice","@type":"WebPage","url":"https://www.unitoo.it/tag/technicaladvice.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/technicaladvice.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/unitoo.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/unitoo.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/unitoo.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/unitoo.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: unitoo","headline":"Tag: #unitoo","@type":"WebPage","url":"http://localhost:4000/tag/unitoo.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: unitoo","headline":"Tag: #unitoo","@type":"WebPage","url":"https://www.unitoo.it/tag/unitoo.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/unitoo.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<link rel="canonical" href="http://localhost:4000/tag/video.html" />
|
||||
<meta property="og:url" content="http://localhost:4000/tag/video.html" />
|
||||
<link rel="canonical" href="https://www.unitoo.it/tag/video.html" />
|
||||
<meta property="og:url" content="https://www.unitoo.it/tag/video.html" />
|
||||
<meta property="og:site_name" content="Unitoo" />
|
||||
<meta name="twitter:card" content="summary" />
|
||||
<meta name="twitter:site" content="@UnitooInc" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"Tutti i post del tag: video","headline":"Tag: #video","@type":"WebPage","url":"http://localhost:4000/tag/video.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"Tutti i post del tag: video","headline":"Tag: #video","@type":"WebPage","url":"https://www.unitoo.it/tag/video.html","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tag/video.html">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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">
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -19,23 +19,23 @@ Le tecnologie software" />
|
|||
" />
|
||||
<meta property="og:description" content="
|
||||
" />
|
||||
<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" />
|
||||
<script type="application/ld+json">
|
||||
{"description":"meta.descriptions.software_techologies","headline":"meta.titles.software_technologies","@type":"WebPage","url":"http://localhost:4000/tecnologie_software/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"http://localhost:4000/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
{"description":"meta.descriptions.software_techologies","headline":"meta.titles.software_technologies","@type":"WebPage","url":"https://www.unitoo.it/tecnologie_software/","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://www.unitoo.it/assets/images/logo-extended.webp"}},"@context":"https://schema.org"}</script>
|
||||
<!-- End Jekyll SEO tag -->
|
||||
|
||||
|
||||
<link rel='shortcut icon' href="http://localhost:4000/favicon.ico" type="image/x-icon">
|
||||
<link rel="apple-touch-icon" href="http://localhost:4000/favicon-192.png" sizes="192x192">
|
||||
<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-77a5b970fb42c4c374a2a78ec0f47785f47966a34aa496df8202a36027b72f6eb0b41deadeb4dcc746c9042fd334a6271f9fdcb5bbb2b598ee8e200851218add.css">
|
||||
|
||||
<link rel="canonical" href="http://localhost:4000/tecnologie_software/">
|
||||
<link rel="alternate" type="application/rss+xml" title="Unitoo" href="http://localhost:4000/feed.xml">
|
||||
<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