2
If I put in mine view Layout that line:
@Styles.Render("~/Content/css")
I’m stating that all the files .css
in the briefcase Content
will be rendered? I mean, I don’t need to put any .css
explicitly in my view, is that it? If there are 5 files inside the page, the five will be rendered and already included in my view, is that right? We don’t need lines like that:
<link href="~/Content/font-awesome.min.css" rel="stylesheet" />
For each file .css
I got it, I got it right?