magento 2 tambahkan blok statis

<?php    echo $this->getLayout()        ->createBlock(\Magento\Cms\Block\Block::class)        ->setBlockId('my_cmsblock_identifier') //replace my_cmsblock_identifier with real CMS bock identifier        ->toHtml();?>
Obnoxious Orangutan