Backend theme rendering

crnogorac081

Did anyone notice that backend theme is not rendering correctly ?

for example

        <ul class="opening_tag">
        <li>
    <!-- BEGIN something_block -->
            <div>{CONTENT_INSIDE}</div>
    <!-- END something_block -->
        </li>
        <li>
    <!-- BEGIN something2_block -->
            <div>{CONTENT2_INSIDE}</div>
    <!-- END something2_block -->
        </li>
        </ul>

Outputs

        <ul class="opening_tag">
        <li></li>
        <li></li>
       </ul>

            <div>{CONTENT_INSIDE}</div>
            <div>{CONTENT_INSIDE}</div>

looks like blocks are rendering later, so it breaks my design.. Anybody know why ?
Web developer