blob: 026eb52ed5fe8963474bc4ee4a5ad1a9e4e8cd97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<html>
<head>
<title>
{if $post_info.use_title eq 'y'}{$post_info.title|escape} {tr}posted by{/tr} {displayname hash=$post_info nolink=true} on {$post_info.publish_date|default:$post_info.created|bit_short_datetime}{else}{$post_info.publish_date|default:$post_info.created|bit_short_datetime} {tr}posted by{/tr} {displayname hash=$post_info}{/if}
</title>
</head>
<style type="text/css">
<!--
{literal}
body { margin : 5ex; }
a { color : black; text-decoration : none; }
a:hover { background-color : #deceae; }
.head { border-bottom: 1px solid black; }
.title { font-size : larger; margin : 1ex 0; }
.postedby {font-size : smaller; font-style : italic; }
.body { margin : 2ex;}
.foot { border-top : 1px solid black; }
.permalink { }
.icon { border: 0px; }
{/literal}
-->
</style>
<body>
<!--
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description
rdf:about="{$uri}"
dc:identifer="{$uri}"
dc:title="{if $post_info.use_title eq 'y'}{$post_info.title|escape} {tr}posted by{/tr} {$post_info.user} on {$post_info.publish_date|default:$post_info.created|bit_short_datetime}{else}{$post_info.publish_date|default:$post_info.created|bit_short_datetime} {tr}posted by{/tr} {$post_info.user}{/if}"
trackback:ping="{$uri2}" />
</rdf:RDF>
-->
<br />
<div class="head">
{if $post_info.use_title eq 'y'}
<div>{$post_info.title|escape}</div>
<div class="postedby">{tr}posted by{/tr} {displayname hash=$post_info} on {$post_info.publish_date|default:$post_info.created|bit_short_datetime}</div>
{else}
<div class="postedby">{$post_info.publish_date|default:$post_info.created|bit_short_datetime} {tr}posted by{/tr} {displayname hash=$post_info}</div>
{/if}
</div>
<div class="postbody">
{$parsed_data}
<hr />
<table>
<tr><td>
<a href="{$smarty.const.BLOGS_PKG_URL}view_post.php?blog_id={$post_info.blog_id|default:0}&post_id={$post_info.post_id}" rel="bookmark">{tr}Permalink{/tr}</a>
({tr}referenced by{/tr}: {$post_info.trackbacks_from_count} {tr}posts{/tr} {tr}references{/tr}: {$post_info.trackbacks_to_count} {tr}posts{/tr})
{if !empty($post_info.allow_comments) && $post_info.allow_comments eq 'y' && $gBitSystem->isFeatureActive( 'blog_posts_comments' )}
{$post_info.num_comments} {tr}comments{/tr}
<a href="{$smarty.const.BLOGS_PKG_URL}view_post.php?find={$find}&blog_id={$post_info.blog_id}&offset={$offset}&sort_mode={$sort_mode}&post_id={$post_info.post_id}">{tr}view comments{/tr}</a>
{/if}
</td><td>
<a title="{tr}print{/tr}" href="{$smarty.const.BLOGS_PKG_URL}print_blog_post.php?post_id={$post_info.post_id}">{biticon ipackage="icons" iname="document-print" iexplain="Print"}</a>
<a title="{tr}email this post{/tr}" href="{$smarty.const.BLOGS_PKG_URL}send_post.php?post_id={$post_info.post_id}">{biticon ipackage="icons" iname="internet-mail" iexplain="Email"}</a>
</td></tr></table>
</div>
</body>
</html>
|