In my app's main _Layout.cshtml, I am linking to the Font Awesome stylesheet:
<link rel="stylesheet" href="~/lib/fontawesome/css/all.css" />
... and icons are appearing where I expect them to. Except for the razor pages concerning account management under Identity.
The _Layout.cshtml-file for account management sits in /Areas/Identity/Pages/Account/Manage. It does not contain <html>, <head> or <body>-tags, so there's no place there to add a <link rel.... I am however able to get icons working if I add those tags in, but that results in a nested set of tags, and is a hacky workaround.
Icons are displayed in these files (among others):
Areas/Identity/Pages/Account/Register.cshtml
Areas/Identity/Pages/Account/Login.cshtml
But not in these (among others):
Areas/Identity/Pages/Account/Manage/Index.cshtml
Areas/Identity/Pages/Account/Manage/Email.cshtml
How can I get it working for the files inside ../Manage/ without "hacking"?
