I need to show some static html in my angular appilation.
For example popup with share buttons - I don't need server data there. So, normally, when you use MVC, you should create .cshtml view, map it to controller action and get this content by url route (http://example.com/ajax/share-popup).
Is it ok to create common .html files instead of .cshtml and access it like a physical file http://example.com/views/common/shared-popup.html ?
Thanks.