Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport"
  6. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Article</title>
  9. </head>
  10. <body>
  11. <?php foreach ($news as $article) { ?>
  12. <article>
  13. <h1> <?php echo $article->getTitle(); ?> </h1>
  14. <?php
  15. echo $article->getContent();
  16. ?>
  17. <hr>
  18. </article>
  19. <?php } ?>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement