Skip to content

Instantly share code, notes, and snippets.

@claushingebjerg
Last active August 29, 2015 14:23
Show Gist options
  • Select an option

  • Save claushingebjerg/e20594689b60e34da175 to your computer and use it in GitHub Desktop.

Select an option

Save claushingebjerg/e20594689b60e34da175 to your computer and use it in GitHub Desktop.
Render slimsy responsive image, partial
@inherits Umbraco.Web.Mvc.UmbracoTemplatePage
<div>
@if (CurrentPage.HasValue("imageID"))
{
var featureImage = Umbraco.Media(CurrentPage.imageID);
<img style="max-width:100%;" src="@featureImage.GetResponsiveImageUrl(1400, 490)" alt="" />
}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment