Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. <!--
  2.  
  3.     <dart-anchor>           is a place holder
  4.     <dart-wrap-around-me>   takes some other HTML and wraps the source around it
  5.     <dart-location>         copies the inner code to somewhere else
  6.  
  7. -->
  8.  
  9. <!--
  10. -- file 1: main.html
  11. -->
  12.  
  13. <!doctype html>
  14. <html>
  15. <head lang="en">
  16.     <title>Hello World</title>
  17. </head>
  18. <body>
  19.  
  20. <dart-anchor name="menu"></dart-anchor>
  21.  
  22. <dart-anchor name="main"></dart-anchor>
  23.  
  24. </body>
  25. </html>
  26.  
  27. <!--
  28. -- file2 2: userpage.html
  29. -->
  30.  
  31. <dart-wrap-around-me src="main">
  32.  
  33.     <dart-location target="menu">
  34.         <a hre="#">menu 1</a>
  35.         <a hre="#">menu 2</a>
  36.     </dart-location>
  37.  
  38.     <dart-location target="main">
  39.         <h1>this is the header</h1>
  40.     </dart-location>
  41.  
  42. </dart-wrap-around-me>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement