I have a template that displays entries by weblog. I’m also displaying the entry date of each entry. I would like to make the entry date a link to a template that shows all entries for that date. Here is how I’m doing it at the moment:
<a href="http://{path={weblogs}/edition/{entry_date}}">{entry_date format="%m/%d/%y - %g:%i %a"}</a>The resulting template named “edition” does display entries for that date. But the pagination at the bottom doesn’t work correctly. The link for Page 2 shows P10 in the url. In addition, when you click on the link, it simply reloads the current page.
Any suggestions?