On this page http://janhekmanschool.nl/nieuws/archief/2009/ there are some yearly navigation links.
What I want is that when you click on 2009 the link has a different class then the 2008 link. I tried some thing like this but it won’t work.
{exp:weblog:entries weblog="{template_group}" dynamic="off" disable="pagination|trackbacks|member_data"}
{date_heading display="yearly"}
{if location={segment_3}}
<li><strong>{entry_date format="%Y"}</strong></li>
{if:else}
<li><a href="http://{path=">{entry_date format="%Y"}</a></li>
{/if}
{/date_heading}
{/exp:weblog:entries}I hope someone knows how to get this working…
Update:
I got it working with this code:
{exp:weblog:entries weblog="{template_group}" dynamic="off" disable="pagination|trackbacks|member_data"}
{date_heading display="yearly"}
{if segment_2==year}
<li><strong>{entry_date format="%Y"}</strong></li>
{if:else}
<li><a href="http://{path=">{entry_date format="%Y"}</a></li>
{/if}
{/date_heading}
{/exp:weblog:entries}