diff options
author | Michael Francis <edude03@gmail.com> | 2011-06-21 09:37:26 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-06-21 09:37:26 -0400 |
commit | 8fc27734bb21fa00a9f40e26c5bdbdb8157ba7e3 (patch) | |
tree | 99181133c89bf2c59448a7e97a223adce0acd727 | |
parent | e3b0b874bbcd46cc047054b553658bbcac7c7177 (diff) | |
download | otakuhub-8fc27734bb21fa00a9f40e26c5bdbdb8157ba7e3.tar.xz |
New feed format
-rw-r--r-- | views/Users/feed.html.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/views/Users/feed.html.php b/views/Users/feed.html.php index e770454..29d8695 100644 --- a/views/Users/feed.html.php +++ b/views/Users/feed.html.php @@ -1,6 +1,6 @@ <!-- page container --> <!-- page title --> -<h2 class="ribbon blue full" >About Us <span>A bit about our company</span> </h2> +<h2 class="ribbon blue full" ><?= $user->username ?>'s Feed <span>Here's what's poppin'</span> </h2> <div class="triangle-ribbon blue" ></div> <br class="cl" > <!-- sidebar --> @@ -11,7 +11,13 @@ </ul> </aside> <!-- Page Content --> - <div id="page-content" class="two-col container_12" > + +<div id="page-content" class="two-col container_12" > +<?= $this->form->create(null, array('action' => 'post')); ?> + <?= $this->form->field('body', array('type' => 'textarea')); ?> + <?= $this->form->submit('Post!', array('class' => 'button', 'style' => 'float:right')); ?> +<?= $this->form->end(); ?> +<br class ="cl"> <?php foreach($feed as $post) { ?> <div class="grid_4"><img class="inlinepic" src="/img/about.jpg" alt="" /></div> <div class="grid_8"> |