Reputation: 15414
I am creating a custom theme with HTML and want to create a navigation menu for my pages. I am not sure how to do this however.
I have tried to add:
{block:HasPages} {/block:HasPages}
and
{block:Pages} {/block:Pages}
but nothing appears.
Do I just have to hard code the links into the theme? Is there no way to do this dynamically?
Upvotes: 1
Views: 203
Reputation: 1922
The code block to show links to the Custom Page(s) is as follows:
{block:HasPages}
{block:Pages}
<a href="{URL}">{Label}</a>
{/block:Pages}
{/block:HasPages}
Code per the Tumblr HTML Guide.
Upvotes: 4