{"id":206,"date":"2021-05-06T04:19:13","date_gmt":"2021-05-06T04:19:13","guid":{"rendered":"https:\/\/themarkaz.org\/oldsite\/volunteer\/"},"modified":"2024-09-26T15:15:04","modified_gmt":"2024-09-26T13:15:04","slug":"volunteer","status":"publish","type":"page","link":"https:\/\/themarkaz.org\/oldsite\/volunteer\/","title":{"rendered":"Volunteer"},"content":{"rendered":"<article id=\"sections\" class=\"sections\" data-page-sections=\"5f6632324c0e7d115142af72\">\n<section class=\"page-section layout-engine-section background-width--inset section-height--medium content-width--medium horizontal-alignment--left vertical-alignment--bottom has-background black\" data-test=\"page-section\" data-section-theme=\"black\" data-section-id=\"5f6632324c0e7d115142af75\" data-controller=\"SectionWrapperController, MagicPaddingController\" data-current-styles=\"{ &quot;backgroundImage&quot;: { &quot;id&quot;: &quot;5f6715d8057cc94200f87c5b&quot;, &quot;recordType&quot;: 2, &quot;addedOn&quot;: 1600591320071, &quot;updatedOn&quot;: 1600607941386, &quot;workflowState&quot;: 1, &quot;publishOn&quot;: 1600591320071, &quot;authorId&quot;: &quot;55522ba2e4b015fc1ad386c9&quot;, &quot;systemDataId&quot;: &quot;1600591320758-O9ODXPKBSFFHU5C7JQXZ&quot;, &quot;systemDataVariants&quot;: &quot;1200x800,100w,300w,500w,750w,1000w&quot;, &quot;systemDataSourceType&quot;: &quot;JPG&quot;, &quot;filename&quot;: &quot;alhambra.jpg&quot;, &quot;mediaFocalPoint&quot;: { &quot;x&quot;: 0.5, &quot;y&quot;: 0.5, &quot;source&quot;: 3 }, &quot;colorData&quot;: { &quot;topLeftAverage&quot;: &quot;e3e6e3&quot;, &quot;topRightAverage&quot;: &quot;d1d4dc&quot;, &quot;bottomLeftAverage&quot;: &quot;707328&quot;, &quot;bottomRightAverage&quot;: &quot;70681e&quot;, &quot;centerAverage&quot;: &quot;8f5635&quot;, &quot;suggestedBgColor&quot;: &quot;eaeae8&quot; }, &quot;urlId&quot;: &quot;5yxx8rd5k88tkbst05rofvkvj202g3&quot;, &quot;title&quot;: &quot;&quot;, &quot;body&quot;: null, &quot;likeCount&quot;: 0, &quot;commentCount&quot;: 0, &quot;publicCommentCount&quot;: 0, &quot;commentState&quot;: 2, &quot;unsaved&quot;: false, &quot;author&quot;: { &quot;id&quot;: &quot;55522ba2e4b015fc1ad386c9&quot;, &quot;displayName&quot;: &quot;Jordan Elgrably&quot;, &quot;firstName&quot;: &quot;Jordan&quot;, &quot;lastName&quot;: &quot;Elgrably&quot;, &quot;avatarId&quot;: &quot;57f6b67520099ec0de59ae35&quot;, &quot;websiteUrl&quot;: &quot;&quot;, &quot;bio&quot;: &quot;&quot;, &quot;avatarAssetUrl&quot;: &quot;https:\/\/static1.squarespace.com\/static\/images\/57f6b67520099ec0de59ae35\/100w&quot; }, &quot;assetUrl&quot;: &quot;https:\/\/themarkaz.org\/oldsite\/wp-content\/uploads\/2021\/08\/alhambra.jpg&quot;, &quot;contentType&quot;: &quot;image\/jpeg&quot;, &quot;items&quot;: [ ], &quot;pushedServices&quot;: { }, &quot;pendingPushedServices&quot;: { }, &quot;recordTypeLabel&quot;: &quot;image&quot;, &quot;originalSize&quot;: &quot;1200x800&quot; }, &quot;imageOverlayOpacity&quot;: 0.15, &quot;backgroundWidth&quot;: &quot;background-width--inset&quot;, &quot;sectionHeight&quot;: &quot;section-height--medium&quot;, &quot;customSectionHeight&quot;: 85, &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--left&quot;, &quot;verticalAlignment&quot;: &quot;vertical-alignment--bottom&quot;, &quot;contentWidth&quot;: &quot;content-width--medium&quot;, &quot;sectionTheme&quot;: &quot;black&quot;, &quot;sectionAnimation&quot;: &quot;none&quot;, &quot;backgroundMode&quot;: &quot;image&quot; }\" data-animation=\"none\">\n<div class=\"section-background\">\n<p><script>\n  \"use strict\";<\/p>\n<p>  var positionImage = function positionImage(imageEl) {\n    var imageDimensions = imageEl.dataset.imageDimensions.split('x');\n    var originalWidth = imageDimensions[0];\n    var originalHeight = imageDimensions[1];\n    var focalPoint = imageEl.dataset.imageFocalPoint.split(',');\n    var focalPointX = focalPoint[0];\n    var focalPointY = focalPoint[1];\n    var parentNode = imageEl.parentNode;<\/p>\n<p>    var scale = function () {\n      var imageRatio = originalWidth \/ originalHeight;\n      var parentClientSize = {\n        height: parentNode.clientHeight,\n        width: parentNode.clientWidth\n      };\n      var parentRatio = parentClientSize.width \/ parentClientSize.height;<\/p>\n<p>      if (imageRatio > parentRatio) {\n        return parentClientSize.height \/ originalHeight;\n      }<\/p>\n<p>      return parentClientSize.width \/ originalWidth;\n    }();<\/p>\n<p>    var getRelativeOffset = function getRelativeOffset() {\n      var targetWidth = Math.ceil(originalWidth * scale);\n      var targetHeight = Math.ceil(originalHeight * scale);\n      var parentDimensionWidth = parentNode.offsetWidth;\n      var parentDimensionHeight = parentNode.offsetHeight;\n      var overflowWidth = targetWidth - parentDimensionWidth;\n      var overflowHeight = targetHeight - parentDimensionHeight;\n      var valueX;<\/p>\n<p>      if (overflowWidth === 0) {\n        valueX = focalPointX;\n      } else {\n        valueX = Math.max(Math.min(targetWidth * focalPointX - parentDimensionWidth * 0.5, overflowWidth), 0) \/ overflowWidth;\n      }<\/p>\n<p>      var valueY;<\/p>\n<p>      if (overflowHeight === 0) {\n        valueY = focalPointY;\n      } else {\n        valueY = Math.max(Math.min(targetHeight * focalPointY - parentDimensionHeight * 0.5, overflowHeight), 0) \/ overflowHeight;\n      }<\/p>\n<p>      return {\n        valueX: valueX,\n        valueY: valueY\n      };\n    };<\/p>\n<p>    var relativeOffset = getRelativeOffset();\n    var valueX = relativeOffset.valueX;\n    var valueY = relativeOffset.valueY;\n    imageEl.style.objectPosition = \"\".concat(valueX * 100, \"% \").concat(valueY * 100, \"%\");\n  };\n<\/script><\/p>\n<div class=\"section-background-overlay\" data-controller=\"SectionBackgroundOverlayController\" data-image-overlay-opacity=\"0.15\"><\/div>\n<\/div>\n<div class=\"content-wrapper\">\n<div class=\"content\">\n<div id=\"page-section-5f6632324c0e7d115142af75\" class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\">\n<div id=\"block-177e37e01cd1eb95ecd9\" class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\">\n<div class=\"sqs-block-content\">\n<h4 style=\"white-space: pre-wrap;\">Work with us.<\/h4>\n<p>&nbsp;<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/section>\n<section class=\"page-section layout-engine-section background-width--full-bleed section-height--medium content-width--wide horizontal-alignment--center vertical-alignment--middle \" data-test=\"page-section\" data-section-theme=\"\" data-section-id=\"5f6632324c0e7d115142af77\" data-controller=\"SectionWrapperController, MagicPaddingController\" data-current-styles=\"{ &quot;imageOverlayOpacity&quot;: 0.15, &quot;backgroundWidth&quot;: &quot;background-width--full-bleed&quot;, &quot;sectionHeight&quot;: &quot;section-height--medium&quot;, &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--center&quot;, &quot;verticalAlignment&quot;: &quot;vertical-alignment--middle&quot;, &quot;contentWidth&quot;: &quot;content-width--wide&quot;, &quot;sectionTheme&quot;: &quot;&quot;, &quot;sectionAnimation&quot;: &quot;none&quot;, &quot;backgroundMode&quot;: &quot;image&quot; }\" data-animation=\"none\">\n<div class=\"content-wrapper\">\n<div class=\"content\">\n<div id=\"page-section-5f6632324c0e7d115142af77\" class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-6 span-6\">\n<div id=\"block-4faa703278b0545d4707\" class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\">\n<div class=\"sqs-block-content\">\n<p><b>Offre de stage Assistant.e Community Manager le poste restera ouvert jusqu&#8217;\u00e0 ce qu&#8217;il soit pourvu.<\/b><\/p>\n<p>&nbsp;<\/p>\n<\/div>\n<div class=\"sqs-block-content\"><span style=\"font-weight: 400;\">The Markaz Review est une revue litt\u00e9raire et culturelle en ligne qui propose des contenus et des actualit\u00e9s du Moyen-Orient, de l\u2019Afrique du Nord, et de toutes ses communaut\u00e9s en diaspora. Le Markaz signifie &#8220;le centre&#8221; en arabe, ainsi qu&#8217;en persan, turc, h\u00e9breu et ourdou.<\/span><\/div>\n<div class=\"sqs-block-content\"><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><br \/>\nDans le cadre du d\u00e9veloppement de notre activit\u00e9 en France nous recherchons un stagiaire pour rejoindre notre \u00e9quipe communication \u00e0 Montpellier. <a href=\"https:\/\/themarkaz.org\/oldsite\/wp-content\/uploads\/2024\/01\/TMR-2024-Offre-de-stage-Community-Manager-assistant.pdf\" target=\"_blank\" rel=\"noopener\">Lire l&#8217;offre<\/a>.<\/span><\/span><span style=\"font-weight: 400;\">Vous \u00eates cr\u00e9atif.ve et vous aimez \u00e9crire en anglais, vous avez une premi\u00e8re exp\u00e9rience dans la gestion des r\u00e9seaux sociaux, ce stage est fait pour vous.<\/span><\/div>\n<div class=\"sqs-block-content\"><span style=\"color: var(--global--color-primary); font-family: var(--heading--font-family); font-size: var(--heading--font-size-h3); font-weight: var(--heading--font-weight); letter-spacing: var(--heading--letter-spacing-h3); white-space-collapse: preserve;\"><br \/>\nEditing.<\/span><\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-4 span-4\">\n<div id=\"block-844d3d03d5ba52724960\" class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\">\n<div class=\"sqs-block-content\">\n<p class=\"\" style=\"white-space: pre-wrap;\">Are you good with words and know your way around copyediting? Or perhaps you\u2019re bilingual in French, Spanish or Arabic? Help TMR as a volunteer copyeditor to insure the pristine quality of our reviews, articles and other written content. Please email the editor-at-themarkaz.org with your CV and cover letter.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"col sqs-col-4 span-4\">\n<div id=\"block-0e223518470400405a4f\" class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\">\n<div class=\"sqs-block-content\">\n<h3 style=\"white-space: pre-wrap;\">Organizing.<\/h3>\n<p class=\"\" style=\"white-space: pre-wrap;\">A great deal goes into planning a theme issue of our magazine, as well as working with our friends and partners. If you\u2019ve got a clear head for organizing, we definitely need your help! Go ahead and email us at info-at-themarkaz.0rg with your CV and covering letter.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"col sqs-col-4 span-4\">\n<div id=\"block-5becc94f1f5dee39a5a0\" class=\"sqs-block html-block sqs-block-html\" data-block-type=\"2\">\n<div class=\"sqs-block-content\">\n<h3 style=\"white-space: pre-wrap;\">Marketing.<\/h3>\n<p class=\"\" style=\"white-space: pre-wrap;\">Where would we be today without social media? (Back in the \u201870s and \u201880s, but let\u2019s not go there right now). If you know your way around Twitter, Instagram and Facebook, and have your own ideas about how to grow our audience, we would be fortunate to have you on board. Would you very quickly send over your CV and a cover letter? Info-at-themarkaz.org.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/section>\n<section class=\"page-section layout-engine-section background-width--full-bleed section-height--medium content-width--wide horizontal-alignment--center vertical-alignment--middle has-background black\" data-test=\"page-section\" data-section-theme=\"black\" data-section-id=\"5f671d19eb716a35bc32a1e5\" data-controller=\"SectionWrapperController, MagicPaddingController\" data-current-styles=\"{ &quot;backgroundImage&quot;: { &quot;id&quot;: &quot;5f671d25dc971b47106312c6&quot;, &quot;recordType&quot;: 2, &quot;addedOn&quot;: 1600593189681, &quot;updatedOn&quot;: 1600593194156, &quot;workflowState&quot;: 1, &quot;publishOn&quot;: 1600593189681, &quot;authorId&quot;: &quot;55522ba2e4b015fc1ad386c9&quot;, &quot;systemDataId&quot;: &quot;1600593190889-D4XZ3WBW6SANINY4VSWG&quot;, &quot;systemDataVariants&quot;: &quot;1920x1080,100w,300w,500w,750w,1000w,1500w&quot;, &quot;systemDataSourceType&quot;: &quot;JPG&quot;, &quot;filename&quot;: &quot;alhambra-1900pix.jpg&quot;, &quot;mediaFocalPoint&quot;: { &quot;x&quot;: 0.5, &quot;y&quot;: 0.5, &quot;source&quot;: 3 }, &quot;colorData&quot;: { &quot;topLeftAverage&quot;: &quot;968eb6&quot;, &quot;topRightAverage&quot;: &quot;9e91b4&quot;, &quot;bottomLeftAverage&quot;: &quot;415824&quot;, &quot;bottomRightAverage&quot;: &quot;5f5924&quot;, &quot;centerAverage&quot;: &quot;9e7e58&quot;, &quot;suggestedBgColor&quot;: &quot;9d94c3&quot; }, &quot;urlId&quot;: &quot;v7g2b9y32thqimlem2ijurl1m3itvq&quot;, &quot;title&quot;: &quot;&quot;, &quot;body&quot;: null, &quot;likeCount&quot;: 0, &quot;commentCount&quot;: 0, &quot;publicCommentCount&quot;: 0, &quot;commentState&quot;: 2, &quot;unsaved&quot;: false, &quot;author&quot;: { &quot;id&quot;: &quot;55522ba2e4b015fc1ad386c9&quot;, &quot;displayName&quot;: &quot;Jordan Elgrably&quot;, &quot;firstName&quot;: &quot;Jordan&quot;, &quot;lastName&quot;: &quot;Elgrably&quot;, &quot;avatarId&quot;: &quot;57f6b67520099ec0de59ae35&quot;, &quot;websiteUrl&quot;: &quot;&quot;, &quot;bio&quot;: &quot;&quot;, &quot;avatarAssetUrl&quot;: &quot;https:\/\/static1.squarespace.com\/static\/images\/57f6b67520099ec0de59ae35\/100w&quot; }, &quot;assetUrl&quot;: &quot;https:\/\/themarkaz.org\/oldsite\/wp-content\/uploads\/2021\/08\/alhambra-1900pix.jpg&quot;, &quot;contentType&quot;: &quot;image\/jpeg&quot;, &quot;items&quot;: [ ], &quot;pushedServices&quot;: { }, &quot;pendingPushedServices&quot;: { }, &quot;recordTypeLabel&quot;: &quot;image&quot;, &quot;originalSize&quot;: &quot;1920x1080&quot; }, &quot;imageOverlayOpacity&quot;: 0.15, &quot;backgroundWidth&quot;: &quot;background-width--full-bleed&quot;, &quot;sectionHeight&quot;: &quot;section-height--medium&quot;, &quot;horizontalAlignment&quot;: &quot;horizontal-alignment--center&quot;, &quot;verticalAlignment&quot;: &quot;vertical-alignment--middle&quot;, &quot;contentWidth&quot;: &quot;content-width--wide&quot;, &quot;sectionTheme&quot;: &quot;black&quot;, &quot;sectionAnimation&quot;: &quot;none&quot;, &quot;backgroundMode&quot;: &quot;image&quot; }\" data-animation=\"none\">\n<div class=\"content-wrapper\">\n<div class=\"content\">\n<div id=\"page-section-5f671d19eb716a35bc32a1e5\" class=\"sqs-layout sqs-grid-12 columns-12\" data-type=\"page-section\">\n<div class=\"row sqs-row\">\n<div class=\"col sqs-col-12 span-12\"><\/div>\n<p>Thank you!<\/p>\n<\/div>\n<div class=\"hidden form-submission-html\" data-submission-html=\"\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/section>\n<\/article>\n","protected":false},"excerpt":{"rendered":"<p>Work with us. &nbsp; Offre de stage Assistant.e Community Manager le poste restera ouvert jusqu&#8217;\u00e0 ce qu&#8217;il soit pourvu. &nbsp; The Markaz Review est une revue litt\u00e9raire et culturelle en&hellip; <a class=\"more-link\" href=\"https:\/\/themarkaz.org\/oldsite\/volunteer\/\">Continue reading <span class=\"screen-reader-text\">Volunteer<\/span><\/a><\/p>\n","protected":false},"author":13,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"footnotes":""},"coauthors":[2165],"class_list":["post-206","page","type-page","status-publish","hentry","entry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Volunteer - The Markaz Review<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/themarkaz.org\/oldsite\/volunteer\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Volunteer\" \/>\n<meta property=\"og:description\" content=\"Work with us. &nbsp; Offre de stage Assistant.e Community Manager le poste restera ouvert jusqu&#8217;\u00e0 ce qu&#8217;il soit pourvu. &nbsp; The Markaz Review est une revue litt\u00e9raire et culturelle en&hellip; Continue reading Volunteer\" \/>\n<meta property=\"og:url\" content=\"https:\/\/themarkaz.org\/oldsite\/volunteer\/\" \/>\n<meta property=\"og:site_name\" content=\"The Markaz Review\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-26T13:15:04+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data2\" content=\"TMR\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/volunteer\\\/\",\"url\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/volunteer\\\/\",\"name\":\"Volunteer - The Markaz Review\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#website\"},\"datePublished\":\"2021-05-06T04:19:13+00:00\",\"dateModified\":\"2024-09-26T13:15:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/volunteer\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/volunteer\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/volunteer\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Volunteer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#website\",\"url\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/\",\"name\":\"The Markaz Review\",\"description\":\"Literature and Arts from the Center of the World\",\"publisher\":{\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#organization\",\"name\":\"The Markaz Review\",\"url\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-New-2023-TMR-Logo-500-pix.jpg\",\"contentUrl\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/wp-content\\\/uploads\\\/2023\\\/08\\\/cropped-New-2023-TMR-Logo-500-pix.jpg\",\"width\":473,\"height\":191,\"caption\":\"The Markaz Review\"},\"image\":{\"@id\":\"https:\\\/\\\/themarkaz.org\\\/oldsite\\\/#\\\/schema\\\/logo\\\/image\\\/\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Volunteer - The Markaz Review","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:\/\/themarkaz.org\/oldsite\/volunteer\/","og_locale":"en_US","og_type":"article","og_title":"Volunteer","og_description":"Work with us. &nbsp; Offre de stage Assistant.e Community Manager le poste restera ouvert jusqu&#8217;\u00e0 ce qu&#8217;il soit pourvu. &nbsp; The Markaz Review est une revue litt\u00e9raire et culturelle en&hellip; Continue reading Volunteer","og_url":"https:\/\/themarkaz.org\/oldsite\/volunteer\/","og_site_name":"The Markaz Review","article_modified_time":"2024-09-26T13:15:04+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes","Written by":"TMR"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/themarkaz.org\/oldsite\/volunteer\/","url":"https:\/\/themarkaz.org\/oldsite\/volunteer\/","name":"Volunteer - The Markaz Review","isPartOf":{"@id":"https:\/\/themarkaz.org\/oldsite\/#website"},"datePublished":"2021-05-06T04:19:13+00:00","dateModified":"2024-09-26T13:15:04+00:00","breadcrumb":{"@id":"https:\/\/themarkaz.org\/oldsite\/volunteer\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/themarkaz.org\/oldsite\/volunteer\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/themarkaz.org\/oldsite\/volunteer\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/themarkaz.org\/oldsite\/"},{"@type":"ListItem","position":2,"name":"Volunteer"}]},{"@type":"WebSite","@id":"https:\/\/themarkaz.org\/oldsite\/#website","url":"https:\/\/themarkaz.org\/oldsite\/","name":"The Markaz Review","description":"Literature and Arts from the Center of the World","publisher":{"@id":"https:\/\/themarkaz.org\/oldsite\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/themarkaz.org\/oldsite\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/themarkaz.org\/oldsite\/#organization","name":"The Markaz Review","url":"https:\/\/themarkaz.org\/oldsite\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/themarkaz.org\/oldsite\/#\/schema\/logo\/image\/","url":"https:\/\/themarkaz.org\/oldsite\/wp-content\/uploads\/2023\/08\/cropped-New-2023-TMR-Logo-500-pix.jpg","contentUrl":"https:\/\/themarkaz.org\/oldsite\/wp-content\/uploads\/2023\/08\/cropped-New-2023-TMR-Logo-500-pix.jpg","width":473,"height":191,"caption":"The Markaz Review"},"image":{"@id":"https:\/\/themarkaz.org\/oldsite\/#\/schema\/logo\/image\/"}}]}},"_links":{"self":[{"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/pages\/206","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/comments?post=206"}],"version-history":[{"count":2,"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/pages\/206\/revisions"}],"predecessor-version":[{"id":34545,"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/pages\/206\/revisions\/34545"}],"wp:attachment":[{"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/media?parent=206"}],"wp:term":[{"taxonomy":"author","embeddable":true,"href":"https:\/\/themarkaz.org\/oldsite\/wp-json\/wp\/v2\/coauthors?post=206"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}