I have a bit of a complex question.
I would like to know if it is possible to change the output of both 
 and 
 ?
The reason I am asking is that I am building a html5 responsive template and I would like to include each iteration of the blog-posts.
the current output for each iteration is:
<h3 class="monstra-blog-title"><a href=""></a></h3>
<small class="monstra-blog-date"></small>
<div class="monstra-blog-post">
    <p></p>
</div>I would like to change it to:
<section>
    <header>
        <h3 class="monstra-blog-title"><a href=""></a></h3>
    </header>
    <content>
        <div class="monstra-blog-post">
            <p></p>
        </div>
    <content>
    <footer>
        <small class="monstra-blog-date"></small>
    </footer>
</section>Would anyone be able to help me with this ?