169 lines
5.8 KiB
HTML
169 lines
5.8 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
<head>
|
|
{Gelato_includes}
|
|
<title>{Page_Title}</title>
|
|
<!--[if IE]>
|
|
<style type="text/css">
|
|
div.post div.quote span.quote big.quote {
|
|
line-height: 40px;
|
|
}
|
|
</style>
|
|
<![endif]-->
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<a href="{URL_Tumble}/rss.php"><img src="{URL_Tumble}/themes/{Template_name}/img/rss.gif" id="rss" alt="RSS" title="RSS" /></a>
|
|
|
|
<h1><a href="{URL_Tumble}/">{Title}</a></h1>
|
|
|
|
<div id="description">
|
|
{Description}
|
|
</div>
|
|
|
|
{if {$isAuthenticated}}
|
|
<div style="padding:4px; border:solid 2px #bbb; display:inline; background-color:#ddd; position:absolute; top:3px; right:3px;">
|
|
<b>Hi, {User}.</b>
|
|
<a target="_top" href="{URL_Tumble}/admin/index.php">Add/Edit my posts</a>
|
|
<a target="_top" href="{URL_Tumble}/admin/close.php">Sign out</a>
|
|
</div>
|
|
{/if}
|
|
|
|
{if {$error}}
|
|
<div class="error">{$error}</div>
|
|
{else}
|
|
{block {$rows} as {$row}}
|
|
<div class="date">
|
|
{$row.Date_Added}
|
|
</div>
|
|
{if {$row.postType}==1}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
|
|
<div class="regular">
|
|
<h2><a href="{$row.Permalink}">{$row.Title}</a></h2>
|
|
{$row.Body}
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==2}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="photo">
|
|
<a {$row.Effect}><img src="{$row.PhotoURL}" alt="{$row.PhotoAlt}" /></a><br/>
|
|
<div class="caption">{$row.Caption}</div>
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==3}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="quote">
|
|
<span class="quote"><big class="quote"><a href="{$row.Permalink}">“</a></big> {$row.Quote}</span>
|
|
<div class="source">— {$row.Source}</div>
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==4}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="link">
|
|
» <a href="{$row.URL}">{$row.Name}</a>
|
|
<div class="description">{$row.Description}</div>
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==5}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="conversation">
|
|
...<h2><a href="{$row.Permalink}">{$row.Title}</a></h2>
|
|
{$row.Conversation}
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==6}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="video">
|
|
{$row.Video}
|
|
<div class="caption">{$row.Caption}</div>
|
|
</div>
|
|
</div>
|
|
{elseif {$row.postType}==7}
|
|
<div class="post">
|
|
<a href="{$row.Permalink}"><img src="{URL_Tumble}/themes/tumblr/img/link.gif" class="permalink" alt="Permalink"/></a>
|
|
<div class="video">
|
|
{$row.Mp3}
|
|
<div class="caption">{$row.Caption}</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="totalComments">
|
|
<h3>Posted by {$row.User} - <a href="{$row.Permalink}#comments">( {$row.Comments_Number} ) comments</a></h3>
|
|
</div>
|
|
{/block}
|
|
|
|
{if {$id_post}}
|
|
<div class="containerComments">
|
|
<h3 id="comments">{$row.Comments_Number} answers to “{$row.Post_Title}”</h3>
|
|
<ol class="commentlist">
|
|
{block {$comments} as {$comment}}
|
|
<li class="alt" id="comment-{$comment.Id_Comment}">
|
|
<cite>
|
|
<a href="#comment-{$comment.Id_Comment}" title="Comment permalink">#</a>
|
|
{$comment.Comment_Author} said:
|
|
</cite>
|
|
<br />
|
|
<span class="timestampComment"> at {$comment.Date}</span><br /><br />
|
|
{$comment.Comment}
|
|
<br /><br />
|
|
</li>
|
|
{/block}
|
|
</ol>
|
|
</div>
|
|
|
|
<div class="containerFormComments">
|
|
<h3 id="respond">Add your comment</h3>
|
|
|
|
<form action="{Form_Action}" method="post" name="commentForm" id="commentForm">
|
|
<p>
|
|
<label for="username">
|
|
<small>Name:</small>
|
|
</label>
|
|
<input name="username" id="username" value="{whois.User_Cookie}" size="22" tabindex="1" type="text" />
|
|
</p>
|
|
<p>
|
|
<label for="email">
|
|
<small>E-mail:</small>
|
|
</label>
|
|
<input name="email" id="email" value="{whois.Email_Cookie}" size="22" tabindex="2" type="text" />
|
|
</p>
|
|
<p>
|
|
<label for="web">
|
|
<small>Website:</small>
|
|
</label>
|
|
<input name="web" id="web" value="{whois.Web_Cookie}" size="22" tabindex="3" type="text" />
|
|
</p>
|
|
<p>
|
|
<textarea name="content" id="content" cols="100" rows="10" tabindex="4"></textarea>
|
|
</p>
|
|
<p>
|
|
<span style="color: rgb(136, 136, 136); margin-bottom: 10px; font-size: 10px;"><a href="http://hobix.com/textile/">Textile</a> syntax is supported.</span>
|
|
<p>
|
|
<input type="submit" value="Add comment" name="btnAdd" id="btnAdd" tabindex="5" />
|
|
</p>
|
|
<p>
|
|
<input name="id_post" id="id_post" value="{id_post}" type="hidden" />
|
|
<input name="comment_date" id="comment_date" value="{Date_Added}" type="hidden" />
|
|
</p>
|
|
</form>
|
|
</div>
|
|
{else}
|
|
{pagination}
|
|
{/if}
|
|
{/if}
|
|
</div>
|
|
<div id="footer">
|
|
subscribe via <a href="{URL_Tumble}/rss.php">rss</a> /
|
|
powered by <a href="http://www.gelatocms.com/">gelato cms</a>
|
|
</div>
|
|
</body>
|
|
</html> |