Inserting image into HTML

Inserting image into HTML

I have an HTML view that gathers "blog posts" and displays them. I have an image upload in the form, and I want to display the image, but only if one has been uploaded. At the moment I can't get the image to load. 

I also can't seem to insert an IF statement after the for statement below. Any help greatly appreciated.
  1. htmlpage Blog_View11()
  2. displayname = "Photo and Video HTML Blog View"
  3. content
  4. <%{
  5.     for each post in Blog  [(Department.contains("Photo and Video") && Expiry_Date > zoho.currentdate)] sort by  Added_Time desc
  6.     {%>        <table cellspacing="5" cellpadding="1" width="100%" border="0">
  7.     <tbody>
  8.         <tr>
  9.             <td><a href="https://creator.zoho.com/bungyhqav/photo-and-video-blog/Blog/record-edit/Blog_View/<%=post.ID%>/" style="font-size: small; "><span style="font-size: large; "><strong><%=post.Title%></strong></span></a><strong><font size="4"><br />
  10.             </font></strong>
  11.            <div><strong><%=post.Added_Time%>&nbsp;<%=post.Crew.First_Name%> <%=post.Crew.Last_Name%>&nbsp;</strong>                         </div>
  12.             Post expires <%=post.Expiry_Date%><br />
  13. <img src='https://creatorexport.zoho.com/DownloadFile.do?filepath=/<%=post.Image%>&sharedBy=userName&appLinkName=app1&viewLinkName=view1'>
  14.             <br />
  15.             <div><span style="font-size: smaller"><font size="2">             <%=post.Body1%><br />
  16.             </font></span></div>
  17.             </td>
  18.         </tr>
  19.     </tbody>
  20. </table>                    <%}
  21. }%>