Hi, I just started making a Tumblr theme and the note count, source, share links, permalink pages, notes, and pagination are not showing up on my theme. Here is the code I have.
<div class="index">
<ul>
{block:NoteCount}<li><a class="notecount" href="{Permalink}#notes">{NoteCountWithLabel}</a></li>{/block:NoteCount}
{block:ContentSource}
<li><a href="{SourceURL}">{lang:Source}:{block:NoSourceLogo}{SourceTitle}{/block:NoSourceLogo}
{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}"height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}</a></li>
{/block:ContentSource}
</ul>
<ul class="share">
<li class="tumblr"><a href="{ReblogURL}">Tumblr</a></li>
</ul>
</div>
{block:PermalinkPage}
<br />
<div style=”text-align:center;”>
{block:Date}
{block:RebloggedFrom}Reblogged{/block:RebloggedFrom}{block:NotReblog}Posted{/block:NotReblog} {TimeAgo}{/block:Date} {block:NoteCount}with {NoteCountWithLabel}
{/block:NoteCount}
{block:RebloggedFrom}from <a href=”{ReblogParentURL}”>{ReblogParentName}</a><br />
Source: <a href=”{ReblogRootURL}”>{ReblogRootName}</a><br />{/block:RebloggedFrom}
{block:IfShowTags}{block:HasTags}<br><br>{block:Tags}<a href=”{TagURL}”>#{Tag}</a>{/block:Tags}{/block:HasTags}{/block:IfShowTags}<br><br>
{/block:Date}
</div>
{block:PostNotes}
<div id="notes">
{PostNotes}
</div>
{/block:PostNotes}
{/block:PermalinkPage}
</article>
{/block:Posts}
{block:Pagination}
<div id="pagination">
<ul>
{block:NextPage}<li><a href="{NextPage}">Next</a></li>{/block:NextPage}
{block:PreviousPage}<li><a href="{PreviousPage}">Prev</a></li>{/block:PreviousPage}
</ul>
</div>
{/block:Pagination}
I placed these before the closing </section> tag in my theme and nothing is showing up. I don't know what is going on here. I've done these things before with past themes I've made and now these things won't work despite that I have the right code. Here's what my theme looks like
http://lt-winter-solstice.tumblr.com/ Is there anything I'm doing wrong? How can I fix this? Can anyone please help me? Thanks.