Vici MVC has built-in support for serving embedded resources to the browser.
If you have an embedded resource in your application, you can generate a URL for it by calling the following method:
ResourceHelper.CreateResourceUrl(assembly, resourceKey, contentType);
To use the generated HTML, add it to the ViewData[] collection:
ViewData["ResourceURL"] = ResourceHelper.CreateResourceUrl(assembly, resourceKey, contentType);
And in your template:
<img src="{{ResourceURL}}" />