Id like to setup a page which would display like this http://dev.cultivatecreative.co.uk/bacsol/old/case_studies.php
I have a weblog setup with a custom field to enter the link to the pdf and a set of categories. I have then setup a template with the following code (taken from the wiki):
{exp:weblog:category_archive weblog="{my_weblog}" show_empty="no" id="my_custom_id"}
{categories}
<h3>{category_name}</h3><p> <br />
{if category_description} {category_description} {/if} </p>
<p>{exp:weblog:entries weblog="{my_weblog}" orderby="date" category="{category_id}" sort="asc" limit="50"}<br />
<a href="http://{document}">{title}</a><br />
{/exp:weblog:entries} </p>
<p>{/categories}<br />
{/exp:weblog:category_archive}This is generating the list of categories and displaying the links to pdfs associated with the category, but all in the same
<ul>tag, which is not quite what i am after.
Is there another way i could do this?
Im thinking that creating each category as an entry instead, and adding the related links to the entry.