Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

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?

share|improve this question
There is a </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
Where do you expect it to go? Why do you expect it to go there? – Eight Days of Malaise Feb 24 '12 at 22:52
I expect the {NextPost} code to result in a "../page/2" link! – Nattvard Feb 25 '12 at 15:53

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.