kidroca

Angular ng-include

Mar 2nd, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.56 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <title>Demo</title>
  6. </head>
  7. <body ng-app>
  8.     <header>
  9.        
  10.         <!-- Тук ще се подпъхне съдържанието на файла -->
  11.         <nav ng-include="'template.html'">         
  12.         </nav>
  13.     </header>
  14.  
  15.     <section>
  16.         <h2>Hello, This is the page heading</h2>
  17.        
  18.         <article>
  19.             And this is the page great content
  20.         </article>
  21.     </section>
  22.  
  23.     <!-- Трябва да има това тук -->
  24.      <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.min.js"></script>   
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment