Guest User

Untitled

a guest
Jul 13th, 2015
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. Controller
  2. ===
  3. Route::get('/', function() {
  4. $data['title'] = 'Index Page of My Super Blog';
  5. $data['subtitle'] = 'A blog about everything';
  6.  
  7. $data['posts'] = [];
  8.  
  9. for ($i = 0; $i < 100; ++$i) {
  10. $data['posts'][$i] = array($i, "Title", "Lorem Ipsum Dolor Sit Amet");
  11. }
  12.  
  13. View::render('index', $data);
  14. });
  15.  
  16. Template
  17. ===
  18. <!doctype html>
  19. <html>
  20. <head>
  21. <meta charset="utf-8">
  22. <title><?=$title?></title>
  23. </head>
  24. <body>
  25. <header>
  26. <h1><?=$title?></h1>
  27. <h2><?=$subtitle?></h2>
  28. </header>
  29.  
  30. <div>
  31. <?php foreach ($posts as $post) { ?>
  32. <div class="post-item">
  33. <h2><?=htmlspecialchars($post[1])?></h2>
  34. <p><?=htmlspecialchars($post[2])?></p>
  35. </div>
  36. <?php } ?>
  37. </div>
  38.  
  39. <footer>
  40. © 2015
  41. </footer>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment