-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.html
60 lines (54 loc) · 2.15 KB
/
post.html
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
<!DOCTYPE HTML>
<html>
<?php include 'templates/head.html' ?>
<body>
<?php include 'templates/header.html' ?>
<!-- this section shows you most of the styled elements from the general stylesheet -->
<section class="row" id="styled">
<div class="col col_11">
<article>
<h1><?php echo $post->title ?></h1>
<span class="information">Posted by <b><?php echo $post->author->name ?></b>, on <i><?php echo $post->published ?></i>
with <a href="#comments"><?php echo count($comments); ?> comments</a></span>
<div class="video-js-box vim-css"><img src="<?php echo $post->image ?>"></div>>
<?php echo $post->content ?>
</article>
<!-- -->
<h2>Comments</h2>
<ul class="comments">
<?php foreach($comments as $comment) { ?>
<li><span class="comment_information">posted by <b><?php echo $comment->author->name ?></b> at <i><?php echo $comment->timestamp ?></i></span>
<p><?php echo $comment->content ?></p>
</li><!-- -->
<?php } ?>
</ul><!-- comments -->
<form class="col_8 add_comment">
<fieldset>
<legend>Add your comment:</legend>
<div>
<label for="email">email</label>
<input type="email" id="email" required="required" class="box_shadow" />
</div>
<div>
<label for="name">name</label>
<input type="text" id="name" class="box_shadow" />
</div>
<div>
<label for="url">url</label>
<input type="url" id="url" class="box_shadow" />
</div>
<div class="textarea">
<label for="comment">comment</label>
<textarea id="comment" class="box_shadow"></textarea>
</div>
<input type="submit" value="add comment →" />
</fieldset>
</form>
<div class="clear" style="height:10px;"></div>
</div><!-- col_11 -->
</section><!-- row -->
<footer class="row">
<div class="col_16 col">all rights reserved © <a href="http://www.enavu.com">enavu network</a> | 52framework the framework from the future</div>
</footer>
</body>
</html>