I'm new to creating themes, and everything on my test blog works fine except that it doesn't show any of my video or audio post. I have no idea why. I've stripped the code down to this
{block:Audio}
<div class="post">
<div class="date">
{block:Date}<span>{Month} {DayOfMonthWithZero}, {Year}</span>{/block:Date}
</div>
<div class="content">
{AudioEmbed-400}
{block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
</div>
<div class="info">
{block:RebloggedFrom}
reblog from: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a>
originated by: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
{/block:RebloggedFrom}
{block:NotReblog}A {Title} Original{/block:NotReblog}
<br />
{block:NoteCount}<a href="{ShortURL}">♥ {NoteCount}</a>{/block:NoteCount} - {block:HasTags}Tags: {block:Tags}<a href="{TagURL}">#{Tag}</a>
{/block:Tags}{block:HasTags}
</div>
</div>
{block:PermalinkPage}
{block:PostNotes}
<div class="notes">{PostNotes}</div>
{/block:PostNotes}
{/block:PermalinkPage}
{/block:Audio}
{block:Video}
<div class="post">
<div class="date">
{block:Date}<span>{Month} {DayOfMonthWithZero}, {Year}</span>{/block:Date}
</div>
<div class="content">
{Video-500}
{block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
</div>
<div class="info">
{block:RebloggedFrom}
reblog from: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a>
originated by: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>
{/block:RebloggedFrom}
{block:NotReblog}A {Title} Original{/block:NotReblog}
<br />
{block:NoteCount}<a href="{ShortURL}">♥ {NoteCount}</a>{/block:NoteCount} - {block:HasTags}Tags: {block:Tags}<a href="{TagURL}">#{Tag}</a>
{/block:Tags}{block:HasTags}
</div>
</div>
{block:PermalinkPage}
{block:PostNotes}
<div class="notes">{PostNotes}</div>
{/block:PostNotes}
{/block:PermalinkPage}
{/block:Video}
and I the post still don't show anything. Can anyone help please ?
(also, how do I get the reblog/ like buttons that go in the top right of the theme ?)