feed.html.php 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- page container -->
  2. <!-- page title -->
  3. <h2 class="ribbon blue full" ><?= $user->username ?>'s Feed <span>Here's what's poppin'</span> </h2>
  4. <div class="triangle-ribbon blue" ></div>
  5. <br class="cl" >
  6. <!-- sidebar -->
  7. <aside>
  8. <ul class="sidebar-nav" >
  9. <li class="first current" ><a href="#" >Feed</a></li>
  10. <li class="" ><a href="#" >Direct Message</a></li>
  11. </ul>
  12. </aside>
  13. <!-- Page Content -->
  14. <div id="page-content" class="two-col container_12" >
  15. <?= $this->form->create(null, array('action' => 'post')); ?>
  16. <?= $this->form->field('body', array('type' => 'textarea')); ?>
  17. <?= $this->form->submit('Post!', array('class' => 'button', 'style' => 'float:right')); ?>
  18. <?= $this->form->end(); ?>
  19. <br class ="cl">
  20. <?php if(isset($feed)): ?>
  21. <?php foreach($feed as $post): ?>
  22. <div class="grid_4"><img class="inlinepic" src="/img/about.jpg" alt="" /></div>
  23. <div class="grid_8">
  24. <h4><?= $post->username ?></h4>
  25. <p><?php echo $post->body; ?> </p>
  26. <h5 class="inline">Skills:</h5>
  27. <ul class="tags">
  28. <li>HTML</li>
  29. <li>CSS</li>
  30. <li>JS/jQuery</li>
  31. </ul>
  32. <h5 class="inline">Social:</h5>
  33. <ul class="social">
  34. <li><a href="#"><img class="tooltip" src="/img/social/16/twitter.png" title="Follow me on Twitter" alt="twitter" /></a></li>
  35. <li><a href="#"><img class="tooltip" src="/img/social/16/facebook.png" title="My Facebook profile" alt="facebook" /></a></li>
  36. <li><a href="#"><img class="tooltip" src="/img/social/16/linkedin.png" title="My LinkedIn profile" alt="linkedin" /></a></li>
  37. <li><a href="#"><img class="tooltip" src="/img/social/16/skype.png" title="Call me on Skype" alt="skype" /></a></li>
  38. </ul>
  39. </div>
  40. <br class="cl">
  41. <?php endforeach; ?>
  42. <?php else: ?>
  43. <p>Woops! There's no posts yet. Make some friends and get the party started!</p>
  44. <?php endif; ?>
  45. </div>
  46. <br class="cl" />
  47. <br class="cl" />