To output the content of magento Static Block in any place on the template please use CMS Code control available under the Insert Tab >> More.
Add this control to the desired place on the page and insert the following code:
<?php
$staticBlock = Mage::getModel('cms/block')->load('myblock');
echo $staticBlock->getTitle(); // block title
echo $staticBlock->getContent(); // block content
?>
Localization of static block
For example, you have a few static blocks for each language:

Now you need to load each static block by Store Code (Magento >> System >> Manage Stores):
<?php
$storeCode = Mage::app()->getStore()->getCode();
if ($storeCode == 'default') {
$blockName = 'block-en';
}
elseif ($storeCode == 'german') {
$blockName = 'block-de';
}
elseif ($storeCode == 'russian') {
$blockName = 'block-ru';
}
$block = Mage::getModel('cms/block')->load($blockName);
echo $block->getTitle();
echo $block->getContent();
?>
To apply Themler Block style to these static blocks you need to add a block wrapper:
$block = Mage::getModel('cms/block')->load($blockName);
echo '<div class="bd-block">';
echo '<div class="bd-blockheader"><h4>' . $block->getTitle() . '</h4></div>';
echo '<div class="bd-blockcontent">' . $block->getContent() . '</div>';
echo '</div>';
