I wanna to get current culture in razor page to decide which online font to load,and I can hardly find how to get it in razor page.
However I have a stupid way to it as below:
@{
if(Localizer["Language"]=="English")
{
///load the css
}}
But I think it is so ugly,if there has a better way to get current culture in razor page?