Skip to content

Instantly share code, notes, and snippets.

@ruemic
Created September 19, 2013 21:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruemic/6630420 to your computer and use it in GitHub Desktop.
Save ruemic/6630420 to your computer and use it in GitHub Desktop.
An example template of future and past entries by month
<pop:content>
<h4>Upcoming Shows</h4>
<pop:months>
<pop:start format="mmmm" wrap="h4"/>
<hr>
<pop:entries_between start="<pop:start/>" end="<pop:end/>">
<p><pop:date format="dd"/></p>
<h3><pop:title/></h3>
</pop:entries_between>
</pop:months>
<h4>Previous Shows</h4>
<pop:past_months>
<pop:start format="mmmm" wrap="h4"/>
<hr>
<pop:past_entries_between start="<pop:start/>" end="<pop:end/>">
<p><pop:date format="dd"/></p>
<h3><pop:title/></h3>
</pop:past_entries_between>
</pop:past_months>
</pop:content>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment