
<style>
    #functions-stack{
        position:fixed;
        top:10px;
        left:10px; /*right:10px;*/
        display:flex;
        flex-direction:column;
        align-items:flex-start; /*flex-end;*/
        gap:4px;
        z-index:99999999;
        max-height:500px;
        overflow:auto;
    }
    .functions-element{
        background:#f66;
        font-size:11px;
        color:#fff;
    }
    .functions-element.checked{
        background:#0d0;
    }
    .functions-element select{
        display:inline;
        width:32px;
        margin:0;
        padding:0;
        line-height:1;
    }
</style>
<script>
    function setFunctionsElenco()
    {
        const el = [...document.getElementsByClassName('functions-element')];
        const stack = document.getElementById('functions-stack');
        const visti = new Set();

        el.forEach(item => {
            const testo = item.innerText.trim();
            if (!visti.has(testo)) {
                visti.add(testo);
                stack.appendChild(item);
            } else {
                item.remove(); // elimina il duplicato
            }
        });
        
        /*el = document.getElementsByClassName('functions-element');
        for(i=0; i<el.length; i++){
            console.log('AGGIUNTO > '+el[i].innerText);
            document.getElementById('functions-stack').appendChild(el[i]);
        }*/
    }
    function setFunctionsElement()
    {
        document.getElementById('functions-stack').submit();
    }
</script>
<form id="functions-stack" method="get"></form>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.educazionedigitale.it/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.educazionedigitale.it/page-sitemap.xml</loc>
		<lastmod>2026-07-28T08:30:04+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/blocks-sitemap.xml</loc>
		<lastmod>2024-11-21T14:48:14+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/product-sitemap.xml</loc>
		<lastmod>2026-07-28T08:21:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/featured_item-sitemap.xml</loc>
		<lastmod>2026-07-14T07:18:44+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/product_cat-sitemap.xml</loc>
		<lastmod>2026-07-28T08:21:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/product_tag-sitemap.xml</loc>
		<lastmod>2026-07-28T08:21:32+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.educazionedigitale.it/featured_item_category-sitemap.xml</loc>
		<lastmod>2026-07-14T07:18:44+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->