Going for a very minimal look, one image per post-one post per page, image link to next post/page.
Tried the following
{block:Posts}
{block:Photo}
<div class="post photo">
<a href="{NextPost}">
<div>
<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
</div>
</a>
{/block:Photo}
{/block:Posts}
With this result
<div class="post photo">
<a href="">
<div>
<img src="http://www.tumblr.com/photo/..." alt=""/>
</div>
</a>
</div>
Any ideas?
</div>missing just above the{/block:Photo}. Is that OK? (Note: I have no knowledge of how Tumblr works, I just observed that there is an HTML tag missing—may it's supposed to be missing, I don't know.) – Alex Feb 24 '12 at 13:30