Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Controller
- ===
- Route::get('/', function() {
- $data['title'] = 'Index Page of My Super Blog';
- $data['subtitle'] = 'A blog about everything';
- $data['posts'] = [];
- for ($i = 0; $i < 100; ++$i) {
- $data['posts'][$i] = array($i, "Title", "Lorem Ipsum Dolor Sit Amet");
- }
- View::render('index', $data);
- });
- Template
- ===
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title><?=$title?></title>
- </head>
- <body>
- <header>
- <h1><?=$title?></h1>
- <h2><?=$subtitle?></h2>
- </header>
- <div>
- <?php foreach ($posts as $post) { ?>
- <div class="post-item">
- <h2><?=htmlspecialchars($post[1])?></h2>
- <p><?=htmlspecialchars($post[2])?></p>
- </div>
- <?php } ?>
- </div>
- <footer>
- © 2015
- </footer>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment