Advertisement
Guest User

Untitled

a guest
Oct 24th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2.  
  3. /**
  4. * 2mark replace template file
  5. *
  6. */
  7.  
  8. namespace news2\views\mytemplate;
  9.  
  10. use function framework2\hs;
  11. use function framework2\url_attr;
  12.  
  13. ?>
  14. <!DOCTYPE html>
  15. <html lang="ja">
  16. <head>
  17. <meta charset="UTF-8">
  18. <meta name="viewport" content="width=device-width, initial-scale=1">
  19. <title>#title#</title>
  20. <link href="<?php echo HOST. APPNAME?>/css/framework.css" rel="stylesheet" type="text/css">
  21. <style>
  22. section{
  23. margin-left: 10px;
  24. }
  25. img{
  26. width: 100%;
  27. max-width: 800px;
  28. }
  29. </style>
  30. </head>
  31. <body id="#id_name#">
  32. <div class="container">
  33. <h1>#title#</h1>
  34. <section>
  35. <div id="c1">
  36. #c1#
  37. </div>
  38. </section>
  39. <section>
  40. <div id="c2">
  41. #c2#
  42. </div>
  43. </section>
  44. </div>
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement