Advertisement
Guest User

Untitled

a guest
Aug 29th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. @color: #4D926F;
  2.  
  3. body {
  4. background-color: @color;
  5. }
  6.  
  7. <!Doctype HTML>
  8. <html>
  9. <head>
  10. <title>@ViewBag.Title</title>
  11.  
  12. <link href="@Url.Content("~/Content/style.less")" type="stylesheet" rel="stylesheet/less" />
  13. <script src="@Url.Content("~/Scripts/less-1.4.1.min.js")" type="text/javascript"></script>
  14.  
  15. </head>
  16. <body>
  17. @RenderBody()
  18. </body>
  19. </html>
  20.  
  21. FileError: 'http://localhost:58123/Content/style.less' wasn't found (404)
  22. in style.less
  23.  
  24. Index
  25.  
  26. <link href="@Url.Content("~/Content/style.less")" type="stylesheet" rel="stylesheet/less" />
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement