Remove cutenews/yui, use twitter bootstrap css
[contractdashboard.git] / Headlines.tpl
1 <?PHP
2 ///////////////////// TEMPLATE Headlines /////////////////////
3 $template_active = <<<HTML
4 [link]{title}[/link], posted on {date} by {author}<br />
5 HTML;
6
7
8 $template_full = <<<HTML
9 <div style="width:420px; margin-bottom:15px;">
10 <div><strong>{title}</strong></div>
11
12 <div style="text-align:justify; padding:3px; margin-top:3px; margin-bottom:5px; border-top:1px solid #D3D3D3;">{full-story}</div>
13
14 <div style="float: right;">{comments-num} Comments</div>
15
16 <div><em>Posted on {date} by {author}</em></div>
17 </div>
18 HTML;
19
20
21 $template_comment = <<<HTML
22 <div style="width: 400px; margin-bottom:20px;">
23
24 <div style="border-bottom:1px solid black;">by <strong>{author}</strong> @ {date}</div>
25
26 <div style="padding:2px; background-color:#F9F9F9">{comment}</div>
27
28 </div>
29 HTML;
30
31
32 $template_form = <<<HTML
33 <table border="0" width="370" cellspacing="0" cellpadding="0">
34 <tr>
35 <td width="60">Name:</td>
36 <td><input type="text" name="name"></td>
37 </tr>
38 <tr>
39 <td>E-mail:</td>
40 <td><input type="text" name="mail"> (optional)</td>
41 </tr>
42 <tr>
43 <td>Smile:</td>
44 <td>{smilies}</td>
45 </tr>
46 <tr>
47 <td colspan="2">
48 <textarea cols="40" rows="6" id=commentsbox name="comments"></textarea><br />
49 <input type="submit" name="submit" value="Add My Comment">
50 <input type=checkbox name=CNremember id=CNremember value=1><label for=CNremember> Remember Me</label> |
51 <a href="javascript:CNforget();">Forget Me</a>
52 </td>
53 </tr>
54 </table>
55 HTML;
56
57
58 $template_prev_next = <<<HTML
59
60 HTML;
61 $template_comments_prev_next = <<<HTML
62
63 HTML;
64 ?>
65