{"id":5069,"date":"2021-06-23T08:36:26","date_gmt":"2021-06-23T06:36:26","guid":{"rendered":"https:\/\/zelloon.at\/press-media\/"},"modified":"2026-03-18T09:04:39","modified_gmt":"2026-03-18T08:04:39","slug":"press-media","status":"publish","type":"page","link":"https:\/\/zelloon.at\/en\/press-media\/","title":{"rendered":"Press &amp; Media"},"content":{"rendered":"<div class=\"align-wrap align-wrap-wide wide-content-wrapper\"><div class=\"show-in-backend\">\n    Karten-Block<\/div>\n<div class=\"scrolltolink\" id=\"\">\n<\/div>\n\n    <div class=\"content-part cards-block padding-top-none padding-bottom-normal\"\n        style=\"background:;;\" data-aos=\"fade-up\">\n        <div class=\"content-wrapper\">\n            <div class=\"cards-head\">\n                <h3 class=\"headline\">References<\/h3>                            <\/div>\n            <div class=\"cards-wrapper\">\n                                        <a href=\"https:\/\/google.com\" target=\"_blank\" title=\"Tyrolean daily newspaper\" class=\"card blankpage\" data-path=\"\" data-aos=\"fade-up\" rel=\"noopener\">\n                            <div class=\"content\">\n                                <div class=\"image\">\n                                    <div class=\"the-image placeholder\"><div class=\"title h4\">Tyrolean daily newspaper<\/div><\/div>                                    <div class=\"icon\">\n                                        <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M16.0054 9.414L7.39838 18.021L5.98438 16.607L14.5904 8H7.00538V6H18.0054V17H16.0054V9.414Z\" fill=\"#282828\"\/>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"info\">\n                                    <div class=\"card-title bold\">\n                                        Tyrolean daily newspaper                                    <\/div>\n                                    <div class=\"icon\">\n                                        <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M16.0054 9.414L7.39838 18.021L5.98438 16.607L14.5904 8H7.00538V6H18.0054V17H16.0054V9.414Z\" fill=\"#282828\"\/>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/a>\n                                        <a href=\"https:\/\/google.com\" target=\"_blank\" title=\"Design Hotels\" class=\"card blankpage\" data-path=\"\" data-aos=\"fade-up\" rel=\"noopener\">\n                            <div class=\"content\">\n                                <div class=\"image\">\n                                                                            <div class=\"the-image b-lazy-bg\"                                             data-src-small=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/07\/zelloon-zel-download-logo-800x800.jpg\"\n                                            data-src=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/07\/zelloon-zel-download-logo-500x500.jpg\"><\/div>\n                                                                        <div class=\"icon\">\n                                        <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M16.0054 9.414L7.39838 18.021L5.98438 16.607L14.5904 8H7.00538V6H18.0054V17H16.0054V9.414Z\" fill=\"#282828\"\/>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"info\">\n                                    <div class=\"card-title bold\">\n                                        Design Hotels                                    <\/div>\n                                    <div class=\"icon\">\n                                        <svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<path d=\"M16.0054 9.414L7.39838 18.021L5.98438 16.607L14.5904 8H7.00538V6H18.0054V17H16.0054V9.414Z\" fill=\"#282828\"\/>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/a>\n                            <\/div>\n                    <\/div>\n    <\/div>\n\n<script>\n    \/**\n     * Zelloon Download All Files Handler\n     * \n     * Triggers simultaneous downloads of all files in the current block.\n     * No server-side zip creation - leverages browser's native download handling.\n     * Works with multiple blocks on the same page.\n     * \n     * @package Zelloon Theme\n     *\/\n    (function() {\n        'use strict';\n\n        \/**\n         * Downloads a file from a given URL using native browser mechanism\n         * \n         * @param {string} url - The URL of the file to download\n         * @param {number} delay - Optional delay in milliseconds before download\n         *\/\n        function downloadFile(url, delay = 0) {\n            setTimeout(function() {\n                var link = document.createElement('a');\n                link.href = url;\n                link.setAttribute('download', '');\n                link.style.display = 'none';\n                document.body.appendChild(link);\n                link.click();\n                document.body.removeChild(link);\n            }, delay);\n        }\n\n        \/**\n         * Handles the download all button click event\n         * Collects all file URLs from the current block and triggers simultaneous downloads\n         * \n         * @param {Event} event - The click event\n         *\/\n        function handleDownloadAllClick(event) {\n            event.preventDefault();\n            event.stopPropagation();\n\n            var button = event.currentTarget;\n            var block = button.closest('.cards-block');\n\n            if (!block) {\n                console.error('Could not find cards-block container');\n                return;\n            }\n\n            \/\/ Collect all file URLs from cards in this specific block\n            var files = [];\n            var cards = block.querySelectorAll('.card');\n\n            cards.forEach(function(card) {\n                var href = card.getAttribute('href');\n                if (href) {\n                    files.push(href);\n                }\n            });\n\n            if (files.length === 0) {\n                console.warn('No files found in this block');\n                return;\n            }\n\n            \/\/ Trigger downloads with small staggered delay to avoid browser blocking\n            \/\/ Each block's downloads are independent when multiple blocks are on the same page\n            files.forEach(function(fileUrl, index) {\n                downloadFile(fileUrl, index * 100);\n            });\n        }\n\n        \/**\n         * Initialize the download all buttons for download blocks\n         * Attaches click handlers to all multidownload buttons\n         * Each button operates on its own cards-block independently\n         *\/\n        function initDownloadButtons() {\n            var buttons = document.querySelectorAll('.cards-block .multidownload');\n            buttons.forEach(function(button) {\n                button.addEventListener('click', handleDownloadAllClick);\n            });\n        }\n\n        \/\/ Initialize when DOM is ready\n        if (document.readyState === 'loading') {\n            document.addEventListener('DOMContentLoaded', initDownloadButtons);\n        } else {\n            initDownloadButtons();\n        }\n\n        \/\/ Reinitialize on dynamic content load (AJAX)\n        document.addEventListener('contentLoaded', initDownloadButtons);\n    })();\n<\/script><\/div><div class=\"align-wrap align-wrap-wide wide-content-wrapper\"><div class=\"show-in-backend\">\n    Karten-Block<\/div>\n<div class=\"scrolltolink\" id=\"\">\n<\/div>\n\n    <div class=\"content-part cards-block padding-top-normal padding-bottom-huge\"\n        style=\"background:;border-bottom:none;;;\" >\n        <div class=\"content-wrapper\">\n            <div class=\"cards-head\">\n                <h3 class=\"headline\">Media data<\/h3><div class=\"text description\">When used, &#8220;zelloon&#8221; must always be cited as the source. In the case of images, the photographer (in the file name) must also be named as the author. <\/div>                                    <div class=\"button-wrapper hideonmobile\">\n                        <button class=\"button gray small outline multidownload has-icon icon-right\" type=\"button\" role=\"button\"\n                            aria-label=\"Download all files\">\n                            Alle Daten                            <div class=\"icon\">\n                                <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                            <\/div>\n                        <\/button>\n                    <\/div>\n                            <\/div>\n            <div class=\"cards-wrapper\">\n                                        <a href=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/07\/zelloon-zelloon-logo-package-juni-2021-web.zip\" target=\"_blank\" title=\"Logo package\" class=\"card blankpage\" data-path=\"\/storage\/web\/web0036\/web\/wp-content\/uploads\/2021\/07\/zelloon-zelloon-logo-package-juni-2021-web.zip\" data-aos=\"fade-up\">\n                            <div class=\"content\">\n                                <div class=\"image\">\n                                    <i class=\"zel-multiple\"><\/i>                                        <div class=\"the-image b-lazy-bg\"                                             data-src-small=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/07\/zelloon-zel-download-logo-800x800.jpg\"\n                                            data-src=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/07\/zelloon-zel-download-logo-500x500.jpg\"><\/div>\n                                                                        <div class=\"icon\">\n                                        <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"info\">\n                                    <div class=\"card-title bold\">\n                                        Logo package                                    <\/div>\n                                    <div class=\"icon\">\n                                        <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/a>\n                                        <a href=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/09\/zelloon-zelloon-bildauswahl-nussbaumerphotography.zip\" target=\"_blank\" title=\"Image selection\" class=\"card blankpage\" data-path=\"\/storage\/web\/web0036\/web\/wp-content\/uploads\/2021\/09\/zelloon-zelloon-bildauswahl-nussbaumerphotography.zip\" data-aos=\"fade-up\">\n                            <div class=\"content\">\n                                <div class=\"image\">\n                                    <i class=\"zel-multiple\"><\/i>                                        <div class=\"the-image b-lazy-bg\"                                             data-src-small=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/09\/zelloon-zelloon-61-zelloon-boutique-hotel-nussbaumerphotography-web-aspect-ratio-1-1-800x800.jpg\"\n                                            data-src=\"https:\/\/zelloon.at\/wp-content\/uploads\/2021\/09\/zelloon-zelloon-61-zelloon-boutique-hotel-nussbaumerphotography-web-aspect-ratio-1-1-500x500.jpg\"><\/div>\n                                                                        <div class=\"icon\">\n                                        <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                                <div class=\"info\">\n                                    <div class=\"card-title bold\">\n                                        Image selection                                    <\/div>\n                                    <div class=\"icon\">\n                                        <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                                    <\/div>\n                                <\/div>\n                            <\/div>\n                        <\/a>\n                            <\/div>\n                            <div class=\"button-wrapper showonmobile\">\n                    <button class=\"button gray small outline multidownload has-icon icon-right\" type=\"button\" role=\"button\"\n                        aria-label=\"Download all files\">\n                        Alle Daten                        <div class=\"icon\">\n                            <svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n<g clip-path=\"url(#clip0_6778_2860)\">\n<path d=\"M2 12.6673H14V14.0007H2V12.6673ZM8.66667 8.78198L12.714 4.73398L13.6567 5.67665L8 11.334L2.34333 5.67732L3.286 4.73398L7.33333 8.78065V1.33398H8.66667V8.78198Z\" fill=\"#282828\"\/>\n<\/g>\n<defs>\n<clipPath id=\"clip0_6778_2860\">\n<rect width=\"16\" height=\"16\" fill=\"white\"\/>\n<\/clipPath>\n<\/defs>\n<\/svg>\n                        <\/div>\n                    <\/button>\n                <\/div>\n                    <\/div>\n    <\/div>\n\n<script>\n    \/**\n     * Zelloon Download All Files Handler\n     * \n     * Triggers simultaneous downloads of all files in the current block.\n     * No server-side zip creation - leverages browser's native download handling.\n     * Works with multiple blocks on the same page.\n     * \n     * @package Zelloon Theme\n     *\/\n    (function() {\n        'use strict';\n\n        \/**\n         * Downloads a file from a given URL using native browser mechanism\n         * \n         * @param {string} url - The URL of the file to download\n         * @param {number} delay - Optional delay in milliseconds before download\n         *\/\n        function downloadFile(url, delay = 0) {\n            setTimeout(function() {\n                var link = document.createElement('a');\n                link.href = url;\n                link.setAttribute('download', '');\n                link.style.display = 'none';\n                document.body.appendChild(link);\n                link.click();\n                document.body.removeChild(link);\n            }, delay);\n        }\n\n        \/**\n         * Handles the download all button click event\n         * Collects all file URLs from the current block and triggers simultaneous downloads\n         * \n         * @param {Event} event - The click event\n         *\/\n        function handleDownloadAllClick(event) {\n            event.preventDefault();\n            event.stopPropagation();\n\n            var button = event.currentTarget;\n            var block = button.closest('.cards-block');\n\n            if (!block) {\n                console.error('Could not find cards-block container');\n                return;\n            }\n\n            \/\/ Collect all file URLs from cards in this specific block\n            var files = [];\n            var cards = block.querySelectorAll('.card');\n\n            cards.forEach(function(card) {\n                var href = card.getAttribute('href');\n                if (href) {\n                    files.push(href);\n                }\n            });\n\n            if (files.length === 0) {\n                console.warn('No files found in this block');\n                return;\n            }\n\n            \/\/ Trigger downloads with small staggered delay to avoid browser blocking\n            \/\/ Each block's downloads are independent when multiple blocks are on the same page\n            files.forEach(function(fileUrl, index) {\n                downloadFile(fileUrl, index * 100);\n            });\n        }\n\n        \/**\n         * Initialize the download all buttons for download blocks\n         * Attaches click handlers to all multidownload buttons\n         * Each button operates on its own cards-block independently\n         *\/\n        function initDownloadButtons() {\n            var buttons = document.querySelectorAll('.cards-block .multidownload');\n            buttons.forEach(function(button) {\n                button.addEventListener('click', handleDownloadAllClick);\n            });\n        }\n\n        \/\/ Initialize when DOM is ready\n        if (document.readyState === 'loading') {\n            document.addEventListener('DOMContentLoaded', initDownloadButtons);\n        } else {\n            initDownloadButtons();\n        }\n\n        \/\/ Reinitialize on dynamic content load (AJAX)\n        document.addEventListener('contentLoaded', initDownloadButtons);\n    })();\n<\/script><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":42,"comment_status":"closed","ping_status":"closed","template":"page-subpage.php","meta":{"_acf_changed":false,"_relevanssi_hide_post":"","_relevanssi_hide_content":"","_relevanssi_pin_for_all":"","_relevanssi_pin_keywords":"","_relevanssi_unpin_keywords":"","_relevanssi_related_keywords":"","_relevanssi_related_include_ids":"","_relevanssi_related_exclude_ids":"","_relevanssi_related_no_append":"","_relevanssi_related_not_related":"","_relevanssi_related_posts":"","_relevanssi_noindex_reason":"","footnotes":""},"class_list":["post-5069","page","type-page","status-publish","hentry"],"acf":[],"_links":{"self":[{"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/pages\/5069","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/comments?post=5069"}],"version-history":[{"count":2,"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/pages\/5069\/revisions"}],"predecessor-version":[{"id":5423,"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/pages\/5069\/revisions\/5423"}],"wp:attachment":[{"href":"https:\/\/zelloon.at\/en\/wp-json\/wp\/v2\/media?parent=5069"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}