I checked and fixed the problem directly on your site, ja_fubix – Standard template style on your site was set with Home layout and Home layout does not support to load main content.
I just helped you to add main content into home layout with the solution below
Open template/ja_fubix/tpls/blocks/homepage.php file
find and change
<?php if($this->hasMessage()):?>
<jdoc:include type="message" />
<?php endif; ?>
to
<?php if($this->hasMessage()):?>
<jdoc:include type="message" />
<?php endif; ?>
<div class="main-container">
<jdoc:include type="component" />
</div>
Now you can see it’s working fine