why won’t the following code work? can i not do an {if:else} within an {if no_results}?
<ul>
{exp:weblog:entries weblog="press" orderby="date" sort="desc"}
{if no_results}
<li>There are no files available.</li>
{if:else}
<li>a link to the file</li>
{/if}
{/exp:weblog:entries}
</ul>