Are you wondering, how to show CMS Static Block in Magento 2?
Here, you will find effective instruction about this topic.
Call from Phtml File:
echo $this->getLayout()
->createBlock('MagentoCmsBlockBlock')
->setBlockId('your_block_identifier')
->toHtml();
Call from CMS page or block:
{{block class="MagentoCmsBlockBlock" block_id="your_block_identifier"}}
Call from XML File:
<referenceContainer name="content">
<block class="MagentoCmsBlockBlock" name="block_identifier">
<arguments>
<argument name="block_id" xsi:type="string">block_identifier</argument>
</arguments>
</block>
</referenceContainer>
Hope this helps you!

