Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 79 → Rev 88

/_taios.php
115,13 → 115,13
function drawBlogPostTree($id)
{
$post = $this->getBlogPost($id);
write('<a href="' . $this->url . 'blog/post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
write('<a href="post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
write('<p>' . $post->content . '</p>');
write('<br />');
if ($this->isUserNormal($this->getLoggedInUser()))
{
write('<p class="bold"><a href="add-commend.php?id="' . $id . '">Add Comment</a></p>');
write('<p class="bold"><a href="add-post.php?id=' . $id . '">Add Comment</a></p>');
write('<br />');
}
 
/admin/all-accounts.php
10,6 → 10,8
 
if ($page->isUserAdmin($page->getLoggedInUser()))
{
write('<p class="bold">Use this to manage all the accounts on the Tim32 Website.</p><br />');
 
write('<table>');
write('<tr>');
write('<td class="bold">ID</td>');
/styles.css
63,10 → 63,15
background-color: #B5D7FF;
}
 
table, td {
table {
border: 1px solid #222222;
}
 
td {
padding: 3px;
border: 1px solid #888888;
}
 
.sidebar {
left: 0px;
top: 0px;
106,7 → 111,6
left: 200px;
top: 0px;
position: absolute;
width: 720px;
margin-right: 32px;
}