html - Posts on Tumblr page not working -


i'm working on tumblr theme , of post types showing up. if makes difference, ones work (titles, text posts, , photosets) first things written in code , rest doesn't show up.

here's html posts looks like:

{block:posts}  <div class="posts">      {block:title}<div class="titles">{title}</div>{/block:title}      {block:text}{body}{/block:text}      {block:photo}         {linkopentag}             <a href="{permalink}"><img src="{photourl-500}" alt="{photoalt}" width="100%" /></a>         {linkclosetag}         <br>{block:caption}{caption}{/block:caption}     {/block:photo}      {block:panorama}         {linkopentag}             <a href="{permalink}"><img src="{photourl-panorama}" alt="{photoalt}"/></a>         {linkclosetag}         <br>{block:caption}{caption}{/block:caption}     {/block:panorama}      {block:photoset}         {photoset-400}         <br>{block:caption}{caption}{/block:caption}     {/block:photoset}      {block:quote}         <div class="quotes">{quote}</div>         {block:source}-{source}{/block:quote}     {/block:quote}      {block:video}         {video-500}         <br>{block:caption}{caption}{/block:caption}     {/block:video}      {block:link}         <div style="padding:5px;">         <div class="links"><a href="{url}" {target}>{name}</a></div>         <br>{block:description}{description}{/block:description}         </div>     {/block:link}      {block:chat}         {block:label}<strong>{label}</strong>{/block:label}:         {block:lines}{line}{/block:lines}     {/block:chat}      {block:audioplayer}         {audioplayerblack}         <br>{block:caption}{caption}{/block:caption}     {/block:audioplayer}      {block:answer}         {asker}         <div class="asks">{question}</div>          {answerer}         <div class="asks">{answer}</div>     {/block:answer}  {/block:post} 

if knows why of these aren't working, appreciate help.

edit: i've taken down blog, i'm leaving question in case recognizes problem , know how help.

it seems closing theme operator {/block:post} incorrect. should {/block:posts}. below revision, comments:

{block:posts} <div class="posts">      {block:text}     <!-- title applies text posts -->     {block:title}     <div class="titles">{title}</div>     {/block:title}     {body}     {/block:text}      {block:photo}     {linkopentag}     <a href="{permalink}"><img src="{photourl-500}" alt="{photoalt}" width="100%" /></a>     {linkclosetag}     <br>{block:caption}{caption}{/block:caption}     {/block:photo}      {block:panorama}     {linkopentag}     <a href="{permalink}"><img src="{photourl-panorama}" alt="{photoalt}"/></a>     {linkclosetag}     <br>{block:caption}{caption}{/block:caption}     {/block:panorama}      {block:photoset}     {photoset-400}     <br>{block:caption}{caption}{/block:caption}     {/block:photoset}      {block:quote}     <div class="quotes">{quote}</div>     {block:source}-{source}{/block:quote}     {/block:quote}      {block:video}     {video-500}     <br>{block:caption}{caption}{/block:caption}     {/block:video}      {block:link}     <div style="padding:5px;">     <div class="links"><a href="{url}" {target}>{name}</a></div>     <br>{block:description}{description}{/block:description}     </div>     {/block:link}      {block:chat}     {block:label}<strong>{label}</strong>{/block:label}:     {block:lines}{line}{/block:lines}     {/block:chat}      <!-- audio embed / player specific audio post -->     {block:audio}     {block:audioembed}     <!-- use newest tumblr audio player -->     {audioembed-400}     {/block:audioembed}     <br>{block:caption}{caption}{/block:caption}     {/block:audio}      {block:answer}     {asker}     <div class="asks">{question}</div>      {answerer}     <div class="asks">{answer}</div>     {/block:answer}  {/block:posts} </div> 

Comments

Popular posts from this blog

Android layout hidden on keyboard show -

google app engine - 403 Forbidden POST - Flask WTForms -

c - Why would PK11_GenerateRandom() return an error -8023? -