enigmacodebreaker you need to place your permalink code inside the blocks for each type of post. So for instance, you have this:
{block:Quote}
<div class=”title”> “{Quote}”</div>
{block:Source}<div class=”text”><br>—{Source}</div>
{/block:Quote}
And later you have the permalink code:
<div id=”permalink”>
<a href=”{Permalink}”>Text</a>
{block:Date}{TimeAgo}{/block:Date}
{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
</a>
</div>
{block:Tags}
<a href=”{TagURL}”>{Tag}</a><span class=”comma”>, </span>
{/block:Tags}{block:HashTags}<div id=”tags”>
<a href=”{TagURL}”>#{Tag}</a>
</div>
{/block:HashTags}
But you have to put the permalink code inside the post block, so it goes like this:
{block:Quote}
<div class=”title”> “{Quote}”</div>
{block:Source}<div class=”text”><br>—{Source}</div><div id=”permalink”>
<a href=”{Permalink}”>Text</a>
{block:Date}{TimeAgo}{/block:Date}
{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}
</a>
</div>
{block:Tags}
<a href=”{TagURL}”>{Tag}</a><span class=”comma”>, </span>
{/block:Tags}{block:HashTags}<div id=”tags”>
<a href=”{TagURL}”>#{Tag}</a>
</div>
{/block:HashTags}{/block:Quote}
Yes, you need to do that for every type of post block. Try that and update your live preview and tell me what there is left to debug.