Skip to content

Instantly share code, notes, and snippets.

@3Easy
Created November 21, 2010 03:03
Show Gist options
  • Save 3Easy/708404 to your computer and use it in GitHub Desktop.
Save 3Easy/708404 to your computer and use it in GitHub Desktop.
EE Nav Nested List Date Heading & Date Footer
<ul class="nav">
{exp:weblog:entries channel="project" status="open|index"}
{date_heading display="yearly"}
<li>
<h2>{entry_date format="%Y"}</h2>
<ul>
{/date_heading}
{date_heading display="monthly"}
<li>
<h3>{entry_date format="%F"}</h3>
<ul>
{/date_heading}
<li>{title}</li>
{date_footer display="monthly"}
</ul>
</li>
{/date_footer}
{date_footer display="yearly"}
</ul>
</li>
{/date_footer}
{/exp:weblog:entries}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment