leftypol/templates/index.html

117 lines
3.6 KiB
HTML
Raw Normal View History

2011-01-02 10:10:18 +00:00
<!DOCTYPE html>
2010-11-02 10:57:33 +00:00
<html>
<head>
<link rel="stylesheet" media="screen" href="{index}style.css"/>
<title>{board[url]} - {board[name]}</title>
2011-01-03 05:29:34 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
2010-11-02 10:57:33 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" />
<script type="text/javascript" src="{index}main.js"></script>
</head>
<body>
2011-02-20 01:39:56 +00:00
{boardlist[top]}
2010-11-02 10:57:33 +00:00
<h1>{board[url]} - {board[name]}</h1>
2010-12-16 08:12:13 +00:00
<div class="title">{board[title]?{board[title]}}<p>{mod?<a href="?/">Return to dashboard</a>}</p></div>
2010-11-02 10:57:33 +00:00
<form onsubmit="return dopost(this);" enctype="multipart/form-data" action="{post_url}" method="post">
2011-02-17 11:03:52 +00:00
{hidden_inputs}
2010-11-30 09:38:24 +00:00
<input type="hidden" name="board" value="{board[uri]}" />
2011-01-02 10:10:18 +00:00
{mod?<input type="hidden" name="mod" value="1" />}
2010-11-02 10:57:33 +00:00
<table>
<tr>
<th>
Name
</th>
<td>
2011-02-03 09:28:14 +00:00
<input type="text" name="name" size="25" maxlength="50" autocomplete="off" />
2010-11-02 10:57:33 +00:00
</td>
</tr>
<tr>
<th>
Email
</th>
<td>
2011-02-17 10:20:04 +00:00
<input type="text" name="email" size="25" maxlength="40" autocomplete="off" />
2010-11-02 10:57:33 +00:00
</td>
</tr>
<tr>
<th>
Subject
</th>
<td>
2011-02-17 10:20:04 +00:00
<input style="float:left;" type="text" name="subject" size="25" maxlength="40" autocomplete="off" />
2011-01-20 08:25:11 +00:00
<input accesskey="s" style="float:right;" type="submit" name="post" value="{button=New Topic}" />
2010-11-02 10:57:33 +00:00
</td>
</tr>
<tr>
<th>
Comment
</th>
<td>
<textarea name="body" id="body" rows="5" cols="30"></textarea>
</td>
</tr>
<tr>
<th>
File
</th>
<td>
<input type="file" name="file"/>
</td>
</tr>
2011-01-02 10:10:18 +00:00
{mod?
<tr>
<th>
Flags
</th>
<td>
<div>
<label for="sticky">Sticky</label>
<input title="Sticky" type="checkbox" name="sticky" id="sticky"><br/>
</div>
<div>
<label for="lock">Lock</label><br/>
<input title="Lock" type="checkbox" name="lock" id="lock">
</div>
2011-02-03 09:28:14 +00:00
<div>
<label for="raw">Raw HTML</label><br/>
<input title="Raw HTML" type="checkbox" name="raw" id="raw">
</div>
2011-01-02 10:10:18 +00:00
</td>
</tr>
}
2010-11-02 10:57:33 +00:00
<tr>
<th>
Password
</th>
<td>
<input type="password" name="password" size="12" maxlength="18" autocomplete="off" />
2010-11-02 10:57:33 +00:00
<span class="unimportant">(For file deletion.)</span>
</td>
</tr>
</table>
</form>
<hr/>
2011-01-21 02:13:50 +00:00
<form action="{post_url}" method="post">
<input type="hidden" name="board" value="{board[uri]}" />
{mod?<input type="hidden" name="mod" value="1" />}
2010-11-02 10:57:33 +00:00
{body}
2011-01-21 02:13:50 +00:00
<div class="delete">
Delete Post [<input title="Delete file only" type="checkbox" name="file" id="delete_file"/>
2011-02-20 06:19:57 +00:00
<label for="delete_file">File</label>] <label for="password">Password</label>
2011-02-20 11:48:41 +00:00
<input id="password" type="password" name="password" size="12" maxlength="18" />
2011-02-20 06:19:57 +00:00
<input type="submit" name="delete" value="Delete" />
</div>
<div class="delete" style="clear:both">
<label for="reason">Reason</label>
<input id="reason" type="text" name="reason" size="20" maxlength="30" />
<input type="submit" name="report" value="Report" />
2011-01-21 02:13:50 +00:00
</div>
</form>
2011-02-17 07:37:18 +00:00
<div class="pages">{btn[prev]} {pages:
2011-02-16 12:32:43 +00:00
[<a {pages[selected]?class="selected"}{!pages[selected]?href="{pages[link]}"}>{pages[num]}</a>]{!%last? }
2011-02-17 07:37:18 +00:00
} {btn[next]}</div>
2011-02-20 01:39:56 +00:00
{boardlist[bottom]}
2011-02-19 12:10:34 +00:00
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://wiki.omegasdg.com/index.php?title=Tinyboard">Tinyboard Alpha</a> | <a href="http://wiki.omegasdg.com/index.php?title=Tinyboard">Tinyboard</a> Copyright © 2010-2011 <a href="http://omegasdg.com/">OmegaSDG</a></p>
2010-11-02 10:57:33 +00:00
</body>
2011-02-03 09:31:32 +00:00
</html>