Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. layouts/error.html
  2.  
  3. templates/error/404.html
  4. templates/error/505.html
  5. templates/error/403.html
  6.  
  7. layouts/internal.html
  8.  
  9. /dashboard -> templates/internal/dashboard.html
  10. /profile -> templates/internal/profile.html
  11. /settings -> templates/internal/settings.html
  12. /library -> templates/internal/library.html
  13. etc..
  14.  
  15. layouts/public.html
  16.  
  17. registration -> templates/public/registration.html
  18. sign in -> templates/public/signin.html
  19. forgot password -> templates/public/forgotpassword.html
  20. about us -> templates/public/aboutus.html
  21. etc..
  22.  
  23. <!doctype html>
  24. <html lang="en" ng-app="phonecatApp">
  25. <head>
  26. ...
  27. <script src="bower_components/angular/angular.js"></script>
  28. <script src="bower_components/angular-route/angular-route.js"></script>
  29. <script src="js/app.js"></script>
  30. <script src="js/controllers.js"></script>
  31. </head>
  32. <body>
  33. <div ng-view></div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement