{"id":23350,"date":"2025-06-10T13:57:06","date_gmt":"2025-06-10T13:57:06","guid":{"rendered":"https:\/\/thebnm.org\/footages\/?p=23350"},"modified":"2025-06-10T13:57:08","modified_gmt":"2025-06-10T13:57:08","slug":"videos-photos-bnm-protest-in-london-against-16-years-of-zakir-majeed-balochs-enforced-disappearance","status":"publish","type":"post","link":"https:\/\/thebnm.org\/footages\/23350\/","title":{"rendered":"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-event-details\">\ud83d\udccb Event Details:<\/h2>\n\n\n\n<p>Topic: Protest Against the 16-Year Enforced Disappearance of Zakir Majeed Baloch<br>Date: 08 June 2025<br>Location: Outside the British Prime Minister\u2019s Residence, London<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-protest-highlights\">\ud83d\udd06 Protest Highlights:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Protesters Demanding Justice<br>Protesters held banners reading:<\/li>\n\n\n\n<li>\u201cRelease Zakir Majeed\u201d<\/li>\n\n\n\n<li>\u201cEnd Enforced Disappearances\u201d<\/li>\n\n\n\n<li>\u201cJustice for the Forcibly Disappeared\u201d \u2022Painful Address by Raj Bibi, Mother of Zakir Majeed Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.<br>She spoke of the pain of waiting, the silence of authorities, and the cruelty of a state that refuses to acknowledge her son&#8217;s fate.<br>She also shared how this prolonged suffering and injustice forced her to migrate to the UK.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-other-key-speakers\">Other Key Speakers:<\/h2>\n\n\n\n<p>\u2022 Hassan Dost Baloch \u2013 Junior Joint Secretary, BNM<br>\u2022 Faheem Baloch \u2013 Foreign Secretary, BNM<br>\u2022 Niaz Baloch \u2013 Coordinator, BNM Foreign Department<br>\u2022 Master Manzoor Baloch \u2013 President, BNM UK<\/p>\n\n\n\n<p>\u201cSpeakers condemned Pakistan\u2019s persecution of Baloch based on their national identity and called on the United Nations and the UK government to take urgent action.\u201d<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-distribution-of-informational-pamphlets\">Distribution of Informational Pamphlets:<\/h2>\n\n\n\n<p>BNM activists handed out pamphlets covering:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Enforced disappearances<\/li>\n\n\n\n<li>Human rights violations<\/li>\n\n\n\n<li>The broader humanitarian crisis in Balochistan<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-purpose-of-the-protest\">\ud83c\udfaf Purpose of the Protest:<\/h2>\n\n\n\n<p>This protest echoed the pain of thousands of families whose loved ones have been forcibly disappeared by the Pakistani state\u2014demanding truth, justice, and international intervention.<\/p>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\" \/>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\" \/>\n    <title>BNM Telegram Previews<\/title>\n    <style>\n        :root {\n            --primary-color: #ddd;\n            --shadow-color: rgba(0, 0, 0, 0.15);\n            --spacing: 15px;\n            --border-radius: 8px;\n        }\n\n        * {\n            box-sizing: border-box;\n            margin: 0;\n            padding: 0;\n        }\n\n        body {\n            font-family: Arial, sans-serif;\n            background-color: #f9f9f9;\n            min-height: 100vh;\n            padding: var(--spacing);\n        }\n\n        .container {\n            display: grid;\n            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));\n            gap: var(--spacing);\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .box {\n            background-color: white;\n            border-radius: var(--border-radius);\n            box-shadow: 0px 4px 8px var(--shadow-color);\n            padding: 10px;\n            transition: transform 0.2s ease;\n        }\n\n        .box:hover {\n            transform: translateY(-3px);\n        }\n\n        .telegram-embed {\n            width: 100%;\n        }\n\n        #load-more {\n            display: block;\n            margin: 30px auto;\n            padding: 10px 20px;\n            font-size: 16px;\n            background-color: #007bff;\n            color: white;\n            border: none;\n            border-radius: var(--border-radius);\n            cursor: pointer;\n            transition: background-color 0.3s ease;\n        }\n\n        #load-more:hover {\n            background-color: #0056b3;\n        }\n\n        @media (max-width: 768px) {\n            .container {\n                grid-template-columns: 1fr;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    <div class=\"container\" id=\"telegram-container\"><\/div>\n    <button id=\"load-more\">Load More<\/button>\n\n    <script>\n        const telegramPosts = [\n            'BNMFootages\/2492',\n            'BNMFootages\/2501',\n            'BNMFootages\/2511',\n            'BNMFootages\/2521',\n            'BNMFootages\/2542',\n            'BNMFootages\/2554',\n            'BNMFootages\/2616',\n\n        ];\n\n        const container = document.getElementById('telegram-container');\n        const loadMoreBtn = document.getElementById('load-more');\n        let currentIndex = 0;\n        const itemsPerLoad = 2;  \/\/ Changed to 2 boxes per load\n\n        function loadTelegramWidgets() {\n            const nextPosts = telegramPosts.slice(currentIndex, currentIndex + itemsPerLoad);\n            nextPosts.forEach(post => {\n                const box = document.createElement('div');\n                box.className = 'box';\n\n                const embedWrapper = document.createElement('div');\n                embedWrapper.className = 'telegram-embed';\n\n                const script = document.createElement('script');\n                script.async = true;\n                script.src = 'https:\/\/telegram.org\/js\/telegram-widget.js?22';\n                script.setAttribute('data-telegram-post', post);\n                script.setAttribute('data-width', '100%');\n\n                embedWrapper.appendChild(script);\n                box.appendChild(embedWrapper);\n                container.appendChild(box);\n            });\n\n            currentIndex += itemsPerLoad;\n            if (currentIndex >= telegramPosts.length) {\n                loadMoreBtn.style.display = 'none';\n            }\n        }\n\n        document.addEventListener('DOMContentLoaded', () => {\n            loadTelegramWidgets();\n        });\n\n        loadMoreBtn.addEventListener('click', loadTelegramWidgets);\n    <\/script>\n<\/body>\n<\/html>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>BNM Protest Against the 16-Year Enforced Disappearance of Zakir Majeed Baloch.<\/p>\n","protected":false},"author":9,"featured_media":23354,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"gallery","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[79,65],"tags":[],"class_list":{"0":"post-23350","1":"post","2":"type-post","3":"status-publish","4":"format-gallery","5":"has-post-thumbnail","7":"category-bnmuk","8":"category-protests","9":"post_format-post-format-gallery"},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.5 (Yoast SEO v26.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>BNM Protest in London Against 16 Years of Zakir Majeed\u2019s Enforced Disappearance<\/title>\n<meta name=\"description\" content=\"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thebnm.org\/footages\/23350\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance\" \/>\n<meta property=\"og:description\" content=\"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thebnm.org\/footages\/23350\/\" \/>\n<meta property=\"og:site_name\" content=\"BNM Footages\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=61568222052787\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-10T13:57:06+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-10T13:57:08+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"BNM UK\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BNMovement_\" \/>\n<meta name=\"twitter:site\" content=\"@BNMovement_\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"BNM UK\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/\"},\"author\":{\"name\":\"BNM UK\",\"@id\":\"https:\/\/thebnm.org\/footages\/#\/schema\/person\/41b45c5a970a4dfa6723a987ee78d2bf\"},\"headline\":\"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance\",\"datePublished\":\"2025-06-10T13:57:06+00:00\",\"dateModified\":\"2025-06-10T13:57:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/\"},\"wordCount\":237,\"publisher\":{\"@id\":\"https:\/\/thebnm.org\/footages\/#organization\"},\"image\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg\",\"articleSection\":[\"BNM UK\",\"Protests\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/\",\"url\":\"https:\/\/thebnm.org\/footages\/23350\/\",\"name\":\"BNM Protest in London Against 16 Years of Zakir Majeed\u2019s Enforced Disappearance\",\"isPartOf\":{\"@id\":\"https:\/\/thebnm.org\/footages\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg\",\"datePublished\":\"2025-06-10T13:57:06+00:00\",\"dateModified\":\"2025-06-10T13:57:08+00:00\",\"description\":\"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.\",\"breadcrumb\":{\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thebnm.org\/footages\/23350\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#primaryimage\",\"url\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg\",\"contentUrl\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg\",\"width\":1280,\"height\":960,\"caption\":\"Protest Against the 16-Year Enforced Disappearance of Zakir Majeed Baloch\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thebnm.org\/footages\/23350\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thebnm.org\/footages\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thebnm.org\/footages\/#website\",\"url\":\"https:\/\/thebnm.org\/footages\/\",\"name\":\"BNM Footages\",\"description\":\"Archive Center of Baloch National Movement for images and videos\",\"publisher\":{\"@id\":\"https:\/\/thebnm.org\/footages\/#organization\"},\"alternateName\":\"Baloch National Movement's Archive Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thebnm.org\/footages\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/thebnm.org\/footages\/#organization\",\"name\":\"Baloch National Movement (BNM)\",\"alternateName\":\"Baloch National Movement's Archive Center\",\"url\":\"https:\/\/thebnm.org\/footages\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thebnm.org\/footages\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2024\/11\/monogram-Telegram.png\",\"contentUrl\":\"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2024\/11\/monogram-Telegram.png\",\"width\":1125,\"height\":1063,\"caption\":\"Baloch National Movement (BNM)\"},\"image\":{\"@id\":\"https:\/\/thebnm.org\/footages\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/profile.php?id=61568222052787\",\"https:\/\/x.com\/BNMovement_\",\"https:\/\/t.me\/BNMFootages\",\"https:\/\/www.youtube.com\/playlist?list=PLq9VMhvRPlin2avPHUXU4QpfuyyaND4Oh\",\"https:\/\/whatsapp.com\/channel\/0029Va62X4iEawdvbpSBD516\",\"https:\/\/www.pinterest.com\/balochnationalmovement\/bnm-footages\/\"],\"description\":\"Baloch National Movement (BNM) \u2013 Media Archive The Baloch National Movement (BNM) was founded on December 24, 1987, by members of the Baloch Students Organization (BSO) as the Baloch National Youth Movement (BNYM), initially representing young Baloch voices advocating for national rights. Renamed in 1989 as the Balochistan National Movement (BNM), the organization broadened its political mission, and on April 30, 2004, it officially became the Baloch National Movement. Under the leadership of Shaheed Waja Ghulam Muhammad, BNM embarked on a journey advocating for the freedom of Balochistan. This website serves as BNM\u2019s media archive, preserving images and videos of the organization\u2019s political and organizational activities. It also links BNM\u2019s multilingual platforms, providing real-time access to the historical and ongoing efforts of the Party. For more information, visit the main website at http:\/\/www.thebnm.org.\",\"foundingDate\":\"1987-12-24\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thebnm.org\/footages\/#\/schema\/person\/41b45c5a970a4dfa6723a987ee78d2bf\",\"name\":\"BNM UK\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thebnm.org\/footages\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/45658e01f0ea76aa6b59d60d8cef8c67587aadbdc1a6a553ba24a7a44ebdaf42?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/45658e01f0ea76aa6b59d60d8cef8c67587aadbdc1a6a553ba24a7a44ebdaf42?s=96&d=mm&r=g\",\"caption\":\"BNM UK\"},\"url\":\"https:\/\/thebnm.org\/footages\/author\/bnmuk\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"BNM Protest in London Against 16 Years of Zakir Majeed\u2019s Enforced Disappearance","description":"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.","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:\/\/thebnm.org\/footages\/23350\/","og_locale":"en_US","og_type":"article","og_title":"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance","og_description":"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.","og_url":"https:\/\/thebnm.org\/footages\/23350\/","og_site_name":"BNM Footages","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=61568222052787","article_published_time":"2025-06-10T13:57:06+00:00","article_modified_time":"2025-06-10T13:57:08+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg","type":"image\/jpeg"}],"author":"BNM UK","twitter_card":"summary_large_image","twitter_creator":"@BNMovement_","twitter_site":"@BNMovement_","twitter_misc":{"Written by":"BNM UK","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/thebnm.org\/footages\/23350\/#article","isPartOf":{"@id":"https:\/\/thebnm.org\/footages\/23350\/"},"author":{"name":"BNM UK","@id":"https:\/\/thebnm.org\/footages\/#\/schema\/person\/41b45c5a970a4dfa6723a987ee78d2bf"},"headline":"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance","datePublished":"2025-06-10T13:57:06+00:00","dateModified":"2025-06-10T13:57:08+00:00","mainEntityOfPage":{"@id":"https:\/\/thebnm.org\/footages\/23350\/"},"wordCount":237,"publisher":{"@id":"https:\/\/thebnm.org\/footages\/#organization"},"image":{"@id":"https:\/\/thebnm.org\/footages\/23350\/#primaryimage"},"thumbnailUrl":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg","articleSection":["BNM UK","Protests"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/thebnm.org\/footages\/23350\/","url":"https:\/\/thebnm.org\/footages\/23350\/","name":"BNM Protest in London Against 16 Years of Zakir Majeed\u2019s Enforced Disappearance","isPartOf":{"@id":"https:\/\/thebnm.org\/footages\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thebnm.org\/footages\/23350\/#primaryimage"},"image":{"@id":"https:\/\/thebnm.org\/footages\/23350\/#primaryimage"},"thumbnailUrl":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg","datePublished":"2025-06-10T13:57:06+00:00","dateModified":"2025-06-10T13:57:08+00:00","description":"Raj Bibi delivered a deeply moving speech about her son\u2019s 16-year forcibly disappearance and her ongoing struggle for justice.","breadcrumb":{"@id":"https:\/\/thebnm.org\/footages\/23350\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thebnm.org\/footages\/23350\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thebnm.org\/footages\/23350\/#primaryimage","url":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg","contentUrl":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2025\/06\/PRBNM5220251.jpg","width":1280,"height":960,"caption":"Protest Against the 16-Year Enforced Disappearance of Zakir Majeed Baloch"},{"@type":"BreadcrumbList","@id":"https:\/\/thebnm.org\/footages\/23350\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thebnm.org\/footages\/"},{"@type":"ListItem","position":2,"name":"Videos &amp; Photos: BNM Protest in London Against 16 Years of Zakir Majeed Baloch\u2019s Enforced Disappearance"}]},{"@type":"WebSite","@id":"https:\/\/thebnm.org\/footages\/#website","url":"https:\/\/thebnm.org\/footages\/","name":"BNM Footages","description":"Archive Center of Baloch National Movement for images and videos","publisher":{"@id":"https:\/\/thebnm.org\/footages\/#organization"},"alternateName":"Baloch National Movement's Archive Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thebnm.org\/footages\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/thebnm.org\/footages\/#organization","name":"Baloch National Movement (BNM)","alternateName":"Baloch National Movement's Archive Center","url":"https:\/\/thebnm.org\/footages\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thebnm.org\/footages\/#\/schema\/logo\/image\/","url":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2024\/11\/monogram-Telegram.png","contentUrl":"https:\/\/thebnm.org\/footages\/wp-content\/uploads\/2024\/11\/monogram-Telegram.png","width":1125,"height":1063,"caption":"Baloch National Movement (BNM)"},"image":{"@id":"https:\/\/thebnm.org\/footages\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=61568222052787","https:\/\/x.com\/BNMovement_","https:\/\/t.me\/BNMFootages","https:\/\/www.youtube.com\/playlist?list=PLq9VMhvRPlin2avPHUXU4QpfuyyaND4Oh","https:\/\/whatsapp.com\/channel\/0029Va62X4iEawdvbpSBD516","https:\/\/www.pinterest.com\/balochnationalmovement\/bnm-footages\/"],"description":"Baloch National Movement (BNM) \u2013 Media Archive The Baloch National Movement (BNM) was founded on December 24, 1987, by members of the Baloch Students Organization (BSO) as the Baloch National Youth Movement (BNYM), initially representing young Baloch voices advocating for national rights. Renamed in 1989 as the Balochistan National Movement (BNM), the organization broadened its political mission, and on April 30, 2004, it officially became the Baloch National Movement. Under the leadership of Shaheed Waja Ghulam Muhammad, BNM embarked on a journey advocating for the freedom of Balochistan. This website serves as BNM\u2019s media archive, preserving images and videos of the organization\u2019s political and organizational activities. It also links BNM\u2019s multilingual platforms, providing real-time access to the historical and ongoing efforts of the Party. For more information, visit the main website at http:\/\/www.thebnm.org.","foundingDate":"1987-12-24"},{"@type":"Person","@id":"https:\/\/thebnm.org\/footages\/#\/schema\/person\/41b45c5a970a4dfa6723a987ee78d2bf","name":"BNM UK","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thebnm.org\/footages\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/45658e01f0ea76aa6b59d60d8cef8c67587aadbdc1a6a553ba24a7a44ebdaf42?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/45658e01f0ea76aa6b59d60d8cef8c67587aadbdc1a6a553ba24a7a44ebdaf42?s=96&d=mm&r=g","caption":"BNM UK"},"url":"https:\/\/thebnm.org\/footages\/author\/bnmuk\/"}]}},"_links":{"self":[{"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/posts\/23350","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/comments?post=23350"}],"version-history":[{"count":1,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/posts\/23350\/revisions"}],"predecessor-version":[{"id":23355,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/posts\/23350\/revisions\/23355"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/media\/23354"}],"wp:attachment":[{"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/media?parent=23350"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/categories?post=23350"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thebnm.org\/footages\/wp-json\/wp\/v2\/tags?post=23350"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}