Lightweight assets helper for ASP.NET MVC
For a NuGet package, pelase check out the nuget branch
For an ASP.NET Core MVC version with the above NuGet package, please check out the aspnetcore branch
Register your assets in any View or PartialView:
@{
Html.Assets().Styles.Add("/Dashboard/Content/Dashboard.css");
Html.Assets().Scripts.Add("/Dashboard/Scripts/Dashboard.js");
}
Render your assets in the Layout page:
<head>
@Html.Assets().Styles.Render()
</head>
<body>
...
@Html.Assets().Scripts.Render()
</body>
Copyright 2012 Kalman Speier
Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php