Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. extends layout
  2.  
  3. block content
  4. h1= title
  5. p Welcome to #{title}
  6.  
  7. script(src='js/jquery.min.js')
  8. script(type='text/javascript').
  9. $(document).ready(function(){
  10. $('#div').load('index.php');
  11. });
  12.  
  13. <head>
  14. <meta charset="utf-8">
  15. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  16. <meta name="description" content="">
  17. <meta name="author" content="">
  18.  
  19. <title>TalkInTee</title>
  20.  
  21. <link href="css/normalize.css" rel="stylesheet">
  22.  
  23. <!-- Bootstrap core CSS -->
  24. <link href="css/bootstrap.min.css" rel="stylesheet">
  25.  
  26.  
  27. <script src="js/jquery.min.js"> </script>
  28. <script src="js/bootstrap.js"> </script>
  29.  
  30. <style>
  31.  
  32. </style>
  33.  
  34. </head>
  35.  
  36. <body>
  37.  
  38. <div id="maindiv">
  39.  
  40. <?php
  41. include 'tdesignAPI/new_applit.php';
  42. ?>
  43. </div>
  44.  
  45. </body>
  46.  
  47. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement