summaryrefslogtreecommitdiffstats
path: root/views/Users/feed.html.php
blob: d37b0a64f00c8fb55e6d77b723fe156e480e96c3 (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
<h1>Welcome <?= $user->username ?></h1>
<div class="post">
<?= $this->form->create(null, array('action' => 'post')); ?>
	<?= $this->form->field('body', array('type' => 'textarea')); ?>
	<?= $this->form->submit('Post!'); ?>
<?= $this->form->end(); ?>
</div>
<h2> Here are some posts:</h2>

<?php if($feed): ?>
<?php foreach ($feed as $post): ?>
<div class="date">
				<span class="month"><a href="#" title="">Nov</a></span>
				<span class="day"><a href="#" title="">8</a></span>
			</div> <!-- .date -->
			
			

			<div class="post post-link">
				<!--<h3><a href="#" title="http://" >My favorite web site</a></h3>-->
				
				<p><?php echo $post->body ?></p>
				
			
				
				<div class="postmeta">
					
					<p class="posttime"><a href="#" title="http://demo.tumblr.com/post/234/my-favorite-web-site">Posted <?=date('m/d/y', $post->datetime->sec) ?></a></p>
					

					
					<p class="notes"><a href="#" title="http://demo.tumblr.com/post/234/my-favorite-web-site#permalink-notes">1,256 notes</a></p>
					

					
					
					
				</div> <!-- .postmeta -->
			</div> <!-- .post -->
			<div class="clear newpost"></div>
<?php endforeach; ?>
<?php else: ?>
<p>Woops! You have no posts, why not post something and get the party started!</p>
<?php endif; ?>