{"id":833,"date":"2018-07-01T18:06:33","date_gmt":"2018-07-01T18:06:33","guid":{"rendered":"http:\/\/www.mafsz.hu\/?p=833"},"modified":"2019-01-24T18:10:57","modified_gmt":"2019-01-24T18:10:57","slug":"mafsz-archiv-fotok","status":"publish","type":"post","link":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/","title":{"rendered":"MAFSZ arch\u00edv fot\u00f3k"},"content":{"rendered":"<p>Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.<!--more--><\/p>\n                    <style>\n                                            .flickr-img-responsive {\n                            width:100% !important;\n                            height:auto !important;\n                            display:block !important;\n                        }\n                        .LoadingImg img {\n                            max-width: 45px;\n                            max-height: 45px;\n                            box-shadow: none;\n                        }\n                        .wpfrank-flickr-div{\n                            padding:15px;\n                        }\n                        @media (max-width: 786px){\n                            .col-md-3 {\n                                width:49.9%;\n                                float:left;\n                            }\n                        }\n                        .play-pause {\n                            display: none !important;\n                        }\n                        .gallery836 {\n                            overflow:hidden;\n                            clear: both;\n                        }\n                        .fnf{\n                            background-color: #a92929;\n                            border-radius: 5px;\n                            color: #fff;\n                            font-family: initial;\n                            text-align: center;\n                            padding:12px;\n                        }\n                    <\/style>\n                    <script type=\"text\/javascript\">\n                    jQuery(function() {\n                        jQuery('.gallery-836').flickr({\n                            apiKey: 'be23efe5176adf8b68c44d05b2f2ce18',\n                            photosetId: '72157704613486931'\n                        });\n                    });\n\n                    ;(function ($, window, document, undefined) {\n                        'use strict';\n                        var pluginName = \"flickr\",\n                            defaults = {\n                                apiKey: \"\",\n                                photosetId: \"\",\n                                errorText: \"<div class='fnf'><i class='far fa-times-circle'><\/i> Error generating gallery.<\/div>\",\n                                loadingSpeed: 38,\n                                photosLimit: 200\n                            },\n                            apiUrl = 'https:\/\/api.flickr.com\/services\/rest\/',\n                            photos = [];\n\n                        function Plugin(element, options) {\n                            this.element = $(element);\n                            this.settings = $.extend({}, defaults, options);\n                            this._defaults = defaults;\n                            this._name = pluginName;\n\n                            this._hideSpinner = function() {\n                                this.element.find('.spinner-wrapper').hide().find('*').hide();\n                            };\n\n                            this._printError = function() {\n                                this.element.find('.gallery-container').append($(\"<div><\/div>\", { \"class\": \"col-lg-12\" })\n                                    .append($(\"<div><\/div>\", { \"class\": \"error-wrapper\" })\n                                        .append($(\"<span><\/span>\", { \"class\": \"label label-danger error\" })\n                                            .html(this.settings.errorText))));\n                            };\n\n                            this._flickrAnimate = function() {\n                                this.element.find('.gallery-container img').each($.proxy(function(index, el) {\n                                    var image = el;\n                                    setTimeout(function() {\n                                        $(image).parent().fadeIn();\n                                    }, this.settings.loadingSpeed * index);\n                                }, this));\n                            };\n\n                            this._printGallery = function(photos) {\n                                var element = this.element.find('.gallery-container');\n                                if (!photos || photos.length === 0) {\n                                    this._hideSpinner();\n                                    this._printError();\n                                    return;\n                                }\n                                $.each(photos, function(key, photo) {\n                                    if (!photo || !photo.thumbnail) return; \/\/ Skip undefined or invalid photos\n                                    var img = $('<img>', { 'class': 'thumb img-thumbnail flickr-img-responsive', src: photo.thumbnail, 'alt': photo.title });\n                                    element.append($('<div><\/div>', { 'class': ' col-md-3 col-sm-4 col-center wpfrank-flickr-div' })\n                                        .append($('<a><\/a>', { 'class': '', href: photo.href, 'data-gallery': '', 'title': photo.title }).hide()\n                                            .append(img)));\n                                });\n\n                                element.imagesLoaded()\n                                    .done($.proxy(this._flickrAnimate, this))\n                                    .always($.proxy(this._hideSpinner, this));\n                            };\n\n                            this._flickrPhotoset = function(photoset) {\n                                var _this = this;\n                                photos[photoset.id] = [];\n                                $.each(photoset.photo, function(key, photo) {\n                                    if (photo.media !== \"photo\") {\n                                        return true; \/\/ Skip videos\n                                    }\n                                    if (key >= _this.settings.photosLimit) {\n                                        return false;\n                                    }\n                                    photos[photoset.id][key] = {\n                                        thumbnail: 'https:\/\/farm' + photo.farm + '.static.flickr.com\/' + photo.server + '\/' + photo.id + '_' + photo.secret + '_q.jpg',\n                                        href: 'https:\/\/farm' + photo.farm + '.static.flickr.com\/' + photo.server + '\/' + photo.id + '_' + photo.secret + '_b.jpg',\n                                        title: photo.title\n                                    };\n                                });\n\n                                console.log('Filtered photos:', photos[photoset.id]); \/\/ Debug log\n                                if (photos[photoset.id].length > 0) {\n                                    this._printGallery(photos[photoset.id]);\n                                } else {\n                                    this._hideSpinner();\n                                    this._printError();\n                                }\n                            };\n\n                            this._onFlickrResponse = function(response) {\n                                console.log('API Response:', response); \/\/ Debug log\n                                if (response.stat === \"ok\") {\n                                    this._flickrPhotoset(response.photoset);\n                                } else {\n                                    this._hideSpinner();\n                                    this._printError();\n                                }\n                            };\n\n                            this._flickrRequest = function(method, data) {\n                                var url = apiUrl + \"?format=json&jsoncallback=?&method=\" + method + \"&api_key=\" + this.settings.apiKey;\n                                $.each(data, function(key, value) {\n                                    url += \"&\" + key + \"=\" + value;\n                                });\n\n                                $.ajax({\n                                    dataType: \"json\",\n                                    url: url,\n                                    context: this,\n                                    success: this._onFlickrResponse\n                                });\n                            };\n\n                            this._flickrInit = function () {\n                                this._flickrRequest('flickr.photosets.getPhotos', {\n                                    photoset_id: this.settings.photosetId,\n                                    extras: 'media'\n                                });\n                            };\n\n                            this.init();\n                        }\n\n                        Plugin.prototype = {\n                            init: function () {\n                                this._flickrInit();\n                            }\n                        };\n\n                        $.fn[pluginName] = function (options) {\n                            this.each(function () {\n                                if (!$.data(this, \"plugin_\" + pluginName)) {\n                                    $.data(this, \"plugin_\" + pluginName, new Plugin(this, options));\n                                }\n                            });\n                            return this;\n                        };\n                    })(jQuery, window, document);\n                    <\/script>\n                    <div class=\"gallery-836\">\n                                                    <h3>MAFSZ r\u00e9gi fot\u00f3k<\/h3>\n                                                <div class=\"row\">\n                            <div class=\"col-xs-12 spinner-wrapper\">\n                                <div class=\"LoadingImg\"><img decoding=\"async\" src=\"https:\/\/www.mafsz.hu\/wp-content\/plugins\/flickr-album-gallery\/img\/loading.gif\" \/><\/div>\n                            <\/div>\n                            <div align=\"center\" class=\"gallery-container\"><\/div>\n                        <\/div>\n                    <\/div>\n                    \n            <!-- Blueimp gallery -->\n            <div id=\"blueimp-gallery-836\" class=\"blueimp-gallery blueimp-gallery-controls\">\n                <div class=\"slides\"><\/div>\n                <h3 class=\"title\"><\/h3>\n                <a class=\"prev\">\u2039<\/a>\n                <a class=\"next\">\u203a<\/a>\n                <a class=\"close\">\u00d7<\/a>\n                <a class=\"play-pause\"><\/a>\n                <ol class=\"indicator\"><\/ol>\n                <div class=\"modal fade\">\n                    <div class=\"modal-dialog\">\n                        <div class=\"modal-content\">\n                            <div class=\"modal-header\">\n                                <button type=\"button\" class=\"close\" aria-hidden=\"true\">\u00d7<\/button>\n                                <h4 class=\"modal-title\"><\/h4>\n                            <\/div>\n                            <div class=\"modal-body next\"><\/div>\n                            <div class=\"modal-footer\">\n                                <button type=\"button\" class=\"btn btn-default pull-left prev\">\n                                    <i class=\"glyphicon glyphicon-chevron-left\"><\/i>\n                                    Previous                                <\/button>\n                                <button type=\"button\" class=\"btn btn-primary next\">\n                                    Next                                    <i class=\"glyphicon glyphicon-chevron-right\"><\/i>\n                                <\/button>\n                            <\/div>\n                        <\/div>\n                    <\/div>\n                <\/div>\n            <\/div>\n\n            <script type=\"text\/javascript\">\n            jQuery(function() {\n                jQuery.extend(blueimp.Gallery.prototype.options, {\n                    useBootstrapModal: false,\n                    hidePageScrollbars: false,\n                    container: \"#blueimp-gallery-836\",\n                });\n            });\n            <\/script>\n\n            \n","protected":false},"excerpt":{"rendered":"<p>Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.<\/p>\n","protected":false},"author":1,"featured_media":544,"comment_status":"closed","ping_status":"open","sticky":false,"template":"page-templates\/full-width.php","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[9],"tags":[75,77,57,58,76],"class_list":["post-833","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mafsz-galeria","tag-archiv","tag-fekete-feher","tag-foto","tag-galeria","tag-regi"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>MAFSZ arch\u00edv fot\u00f3k - MAFSZ<\/title>\n<meta name=\"description\" content=\"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\" \/>\n<meta property=\"og:locale\" content=\"hu_HU\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"MAFSZ arch\u00edv fot\u00f3k - MAFSZ\" \/>\n<meta property=\"og:description\" content=\"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\" \/>\n<meta property=\"og:site_name\" content=\"MAFSZ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MAFSZ\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-01T18:06:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-24T18:10:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2657\" \/>\n\t<meta property=\"og:image:height\" content=\"1319\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"\u00c1d\u00e1m\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Szerz\u0151:\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u00c1d\u00e1m\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\"},\"author\":{\"name\":\"\u00c1d\u00e1m\",\"@id\":\"https:\/\/www.mafsz.hu\/#\/schema\/person\/549621f00f612642da9d7614098127b6\"},\"headline\":\"MAFSZ arch\u00edv fot\u00f3k\",\"datePublished\":\"2018-07-01T18:06:33+00:00\",\"dateModified\":\"2019-01-24T18:10:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\"},\"wordCount\":19,\"publisher\":{\"@id\":\"https:\/\/www.mafsz.hu\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg\",\"keywords\":[\"arch\u00edv\",\"fekete-feh\u00e9r\",\"foto\",\"gal\u00e9ria\",\"r\u00e9gi\"],\"articleSection\":[\"MAFSZ gal\u00e9ria\"],\"inLanguage\":\"hu\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\",\"url\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\",\"name\":\"MAFSZ arch\u00edv fot\u00f3k - MAFSZ\",\"isPartOf\":{\"@id\":\"https:\/\/www.mafsz.hu\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg\",\"datePublished\":\"2018-07-01T18:06:33+00:00\",\"dateModified\":\"2019-01-24T18:10:57+00:00\",\"description\":\"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#breadcrumb\"},\"inLanguage\":\"hu\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"hu\",\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage\",\"url\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg\",\"contentUrl\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg\",\"width\":2657,\"height\":1319},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.mafsz.hu\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"MAFSZ arch\u00edv fot\u00f3k\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.mafsz.hu\/#website\",\"url\":\"https:\/\/www.mafsz.hu\/\",\"name\":\"MAFSZ - Magyar F\u00fcggetlen Film \u00e9s Vide\u00f3 Sz\u00f6vets\u00e9g\",\"description\":\"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g\",\"publisher\":{\"@id\":\"https:\/\/www.mafsz.hu\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.mafsz.hu\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"hu\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.mafsz.hu\/#organization\",\"name\":\"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g\",\"url\":\"https:\/\/www.mafsz.hu\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"hu\",\"@id\":\"https:\/\/www.mafsz.hu\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2019\/01\/Mafszlogo_ff_72dpi_2018.jpg\",\"contentUrl\":\"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2019\/01\/Mafszlogo_ff_72dpi_2018.jpg\",\"width\":724,\"height\":705,\"caption\":\"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g\"},\"image\":{\"@id\":\"https:\/\/www.mafsz.hu\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/MAFSZ\/\",\"https:\/\/www.instagram.com\/mafsz31\",\"https:\/\/www.youtube.com\/channel\/UC0VaPk-iRomi0S1rTqAlFZg\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.mafsz.hu\/#\/schema\/person\/549621f00f612642da9d7614098127b6\",\"name\":\"\u00c1d\u00e1m\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"hu\",\"@id\":\"https:\/\/www.mafsz.hu\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/11851bdb003bd7ae9fda99bf3c88a91b2b9b3e4daf19e1eecae1145adbc699f6?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/11851bdb003bd7ae9fda99bf3c88a91b2b9b3e4daf19e1eecae1145adbc699f6?s=96&d=identicon&r=g\",\"caption\":\"\u00c1d\u00e1m\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"MAFSZ arch\u00edv fot\u00f3k - MAFSZ","description":"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/","og_locale":"hu_HU","og_type":"article","og_title":"MAFSZ arch\u00edv fot\u00f3k - MAFSZ","og_description":"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.","og_url":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/","og_site_name":"MAFSZ","article_publisher":"https:\/\/www.facebook.com\/MAFSZ\/","article_published_time":"2018-07-01T18:06:33+00:00","article_modified_time":"2019-01-24T18:10:57+00:00","og_image":[{"width":2657,"height":1319,"url":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","type":"image\/jpeg"}],"author":"\u00c1d\u00e1m","twitter_card":"summary_large_image","twitter_misc":{"Szerz\u0151:":"\u00c1d\u00e1m"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#article","isPartOf":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/"},"author":{"name":"\u00c1d\u00e1m","@id":"https:\/\/www.mafsz.hu\/#\/schema\/person\/549621f00f612642da9d7614098127b6"},"headline":"MAFSZ arch\u00edv fot\u00f3k","datePublished":"2018-07-01T18:06:33+00:00","dateModified":"2019-01-24T18:10:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/"},"wordCount":19,"publisher":{"@id":"https:\/\/www.mafsz.hu\/#organization"},"image":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","keywords":["arch\u00edv","fekete-feh\u00e9r","foto","gal\u00e9ria","r\u00e9gi"],"articleSection":["MAFSZ gal\u00e9ria"],"inLanguage":"hu"},{"@type":"WebPage","@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/","url":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/","name":"MAFSZ arch\u00edv fot\u00f3k - MAFSZ","isPartOf":{"@id":"https:\/\/www.mafsz.hu\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage"},"image":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","datePublished":"2018-07-01T18:06:33+00:00","dateModified":"2019-01-24T18:10:57+00:00","description":"Folyamatosan b\u0151v\u00fcl\u0151 gal\u00e9ria a MAFSZ m\u00faltj\u00e1b\u00f3l.","breadcrumb":{"@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#breadcrumb"},"inLanguage":"hu","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/"]}]},{"@type":"ImageObject","inLanguage":"hu","@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#primaryimage","url":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","contentUrl":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","width":2657,"height":1319},{"@type":"BreadcrumbList","@id":"https:\/\/www.mafsz.hu\/index.php\/2018\/07\/01\/mafsz-archiv-fotok\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.mafsz.hu\/"},{"@type":"ListItem","position":2,"name":"MAFSZ arch\u00edv fot\u00f3k"}]},{"@type":"WebSite","@id":"https:\/\/www.mafsz.hu\/#website","url":"https:\/\/www.mafsz.hu\/","name":"MAFSZ - Magyar F\u00fcggetlen Film \u00e9s Vide\u00f3 Sz\u00f6vets\u00e9g","description":"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g","publisher":{"@id":"https:\/\/www.mafsz.hu\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mafsz.hu\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"hu"},{"@type":"Organization","@id":"https:\/\/www.mafsz.hu\/#organization","name":"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g","url":"https:\/\/www.mafsz.hu\/","logo":{"@type":"ImageObject","inLanguage":"hu","@id":"https:\/\/www.mafsz.hu\/#\/schema\/logo\/image\/","url":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2019\/01\/Mafszlogo_ff_72dpi_2018.jpg","contentUrl":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2019\/01\/Mafszlogo_ff_72dpi_2018.jpg","width":724,"height":705,"caption":"Magyar F\u00fcggetlen Film \u00e9s Video Sz\u00f6vets\u00e9g"},"image":{"@id":"https:\/\/www.mafsz.hu\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/MAFSZ\/","https:\/\/www.instagram.com\/mafsz31","https:\/\/www.youtube.com\/channel\/UC0VaPk-iRomi0S1rTqAlFZg"]},{"@type":"Person","@id":"https:\/\/www.mafsz.hu\/#\/schema\/person\/549621f00f612642da9d7614098127b6","name":"\u00c1d\u00e1m","image":{"@type":"ImageObject","inLanguage":"hu","@id":"https:\/\/www.mafsz.hu\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/11851bdb003bd7ae9fda99bf3c88a91b2b9b3e4daf19e1eecae1145adbc699f6?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/11851bdb003bd7ae9fda99bf3c88a91b2b9b3e4daf19e1eecae1145adbc699f6?s=96&d=identicon&r=g","caption":"\u00c1d\u00e1m"}}]}},"jetpack_featured_media_url":"https:\/\/www.mafsz.hu\/wp-content\/uploads\/2018\/08\/buglya_buli_pergo_OK.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/posts\/833","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/comments?post=833"}],"version-history":[{"count":3,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/posts\/833\/revisions"}],"predecessor-version":[{"id":837,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/posts\/833\/revisions\/837"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/media\/544"}],"wp:attachment":[{"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/media?parent=833"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/categories?post=833"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mafsz.hu\/index.php\/wp-json\/wp\/v2\/tags?post=833"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}