view.php 254 B

123456789101112131415161718
  1. <?php
  2. function paHeader($title = '')
  3. {
  4. print('<html>
  5. <head>
  6. <meta charset="utf-8">
  7. <title>' . $title . '</title>
  8. <link rel="stylesheet" href="milligram.min.css">
  9. </head>
  10. <body>');
  11. }
  12. function paFooter()
  13. {
  14. print('</body>
  15. </html>');
  16. }