{"id":4452,"date":"2025-07-13T08:39:52","date_gmt":"2025-07-13T08:39:52","guid":{"rendered":"https:\/\/www.sewabhartihp.org\/?page_id=4452"},"modified":"2025-07-18T10:37:46","modified_gmt":"2025-07-18T10:37:46","slug":"donate-copy-copy-3-copy-copy-copy","status":"publish","type":"page","link":"https:\/\/www.sewabhartihp.org\/?page_id=4452","title":{"rendered":"Monthly Magazine"},"content":{"rendered":"\n\n\t\t\t<h4>\n\t\t\t\t\tMonthly Magazine\n\t\t\t\t<\/h4>\n\t    \n    <style>\n        .magazine-container {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));\n            gap: 20px;\n        }\n        @media (max-width: 768px) {\n            .magazine-container {\n                grid-template-columns: repeat(2, 1fr);\n            }\n        }\n        .magazine-card {\n            cursor: pointer;\n            border-radius: 12px;\n            overflow: hidden;\n            aspect-ratio: 1 \/ 1;\n            background: #f0f0f0;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            transition: transform 0.2s;\n        }\n        .magazine-card:hover {\n            transform: scale(1.03);\n        }\n        .magazine-title {\n            text-align: center;\n            font-weight: 600;\n            margin-top: 8px;\n        }\n        .magazine-lightbox {\n            position: fixed;\n            inset: 0;\n            background: rgba(0, 0, 0, 0.7);\n            display: none;\n            justify-content: center;\n            align-items: center;\n            z-index: 9999;\n        }\n        .magazine-lightbox.active {\n            display: flex;\n        }\n        .magazine-popup {\n            background: #fff;\n            padding: 30px;\n            border-radius: 12px;\n            text-align: center;\n            max-width: 90%;\n            max-height: 90%;\n            box-shadow: 0 0 30px rgba(0,0,0,0.3);\n        }\n        .magazine-popup h3 {\n            margin-bottom: 20px;\n        }\n        .magazine-popup button {\n            margin: 8px;\n            padding: 10px 24px;\n            background: #0073aa;\n            color: white;\n            border: none;\n            border-radius: 6px;\n            cursor: pointer;\n            font-size: 16px;\n        }\n        .magazine-popup button:hover {\n            background: #005c87;\n        }\n        .magazine-popup .cancel-button {\n            background: #999;\n        }\n    <\/style>\n\n    <div style=\"text-align:center; margin-bottom: 20px;\">\n        <select id=\"magazine-sort\">\n            <option value=\"desc\">Newest First<\/option>\n            <option value=\"asc\">Oldest First<\/option>\n        <\/select>\n        <input type=\"text\" id=\"magazine-search\" placeholder=\"Search by title...\" style=\"margin-left:10px;\" \/>\n    <\/div>\n\n    <div class=\"magazine-container\" id=\"magazine-list\"><\/div>\n    <div style=\"text-align:center; margin-top: 20px;\">\n        <button id=\"load-more-magazine\">LOAD MORE<\/button>\n    <\/div>\n\n    <div class=\"magazine-lightbox\" id=\"magazine-lightbox\">\n        <div class=\"magazine-popup\">\n            <h3 id=\"popup-title\">Magazine Title<\/h3>\n            <div>\n                <a id=\"popup-read\" target=\"_blank\"><button>READ<\/button><\/a>\n                <a id=\"popup-download\" download><button>DOWNLOAD<\/button><\/a>\n                <button class=\"cancel-button\" onclick=\"closeMagazinePopup()\">CANCEL<\/button>\n            <\/div>\n        <\/div>\n    <\/div>\n\n    <script>\n        let magazinePage = 1;\n        let sortOrder = 'desc';\n        let searchKeyword = '';\n\n        function fetchMagazines() {\n            const list = document.getElementById('magazine-list');\n            const button = document.getElementById('load-more-magazine');\n            button.disabled = true;\n            button.innerText = 'Loading...';\n\n            const data = new FormData();\n            data.append('action', 'load_magazines');\n            data.append('page', magazinePage);\n            data.append('sort', sortOrder);\n            data.append('search', searchKeyword);\n\n            fetch('https:\/\/www.sewabhartihp.org\/wp-admin\/admin-ajax.php', {\n                method: 'POST',\n                body: data\n            }).then(res => res.json()).then(posts => {\n                posts.forEach(post => {\n                    const wrapper = document.createElement('div');\n                    wrapper.style.textAlign = 'center';\n\n                    const card = document.createElement('div');\n                    card.className = 'magazine-card';\n\n                    const thumbnail = \"https:\/\/www.sewabhartihp.org\/wp-content\/uploads\/2025\/07\/\u092e\u093e\u0938\u093f\u0915-\u092a\u0924\u094d\u0930\u093f\u0915\u093e.jpg\";\n\n                    card.innerHTML = `<img decoding=\"async\" src=\"${thumbnail}\" alt=\"${post.title}\" style=\"max-width: 100%; max-height: 100%;\" \/>`;\n\n                    const title = document.createElement('div');\n                    title.className = 'magazine-title';\n                    title.innerText = post.title;\n\n                    card.onclick = () => {\n                        document.getElementById('popup-title').innerText = post.title;\n                        document.getElementById('popup-read').href = post.pdf;\n                        document.getElementById('popup-download').href = post.pdf;\n                        document.getElementById('magazine-lightbox').classList.add('active');\n                    };\n\n                    wrapper.appendChild(card);\n                    wrapper.appendChild(title);\n                    list.appendChild(wrapper);\n                });\n                button.disabled = false;\n                button.innerText = 'LOAD MORE';\n                if (posts.length > 0) magazinePage++;\n                else button.style.display = 'none';\n            });\n        }\n\n        function closeMagazinePopup() {\n            document.getElementById('magazine-lightbox').classList.remove('active');\n        }\n\n        document.getElementById('load-more-magazine').onclick = fetchMagazines;\n        document.getElementById('magazine-sort').onchange = function() {\n            sortOrder = this.value;\n            magazinePage = 1;\n            document.getElementById('magazine-list').innerHTML = '';\n            document.getElementById('load-more-magazine').style.display = 'block';\n            fetchMagazines();\n        };\n        document.getElementById('magazine-search').oninput = function() {\n            searchKeyword = this.value;\n            magazinePage = 1;\n            document.getElementById('magazine-list').innerHTML = '';\n            document.getElementById('load-more-magazine').style.display = 'block';\n            fetchMagazines();\n        };\n\n        fetchMagazines();\n    <\/script>\n    \n\n","protected":false},"excerpt":{"rendered":"<p>Monthly Magazine<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"no-sidebar","site-content-layout":"page-builder","ast-site-content-layout":"full-width-container","site-content-style":"unboxed","site-sidebar-style":"unboxed","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"disabled","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-4452","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/pages\/4452","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=4452"}],"version-history":[{"count":6,"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/pages\/4452\/revisions"}],"predecessor-version":[{"id":4691,"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=\/wp\/v2\/pages\/4452\/revisions\/4691"}],"wp:attachment":[{"href":"https:\/\/www.sewabhartihp.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=4452"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}