Skip to content

Instantly share code, notes, and snippets.

@adamhopkinson
Created November 4, 2014 15:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamhopkinson/1c5ca5eae193ad72d9dd to your computer and use it in GitHub Desktop.
Save adamhopkinson/1c5ca5eae193ad72d9dd to your computer and use it in GitHub Desktop.
Accessing Sitecore render parameters
var p = Html.Sitecore().CurrentRendering.Parameters;
bool fullWidth = (p["Full width"] == "1") ? true : false;
string widthClass = (fullWidth) ? "fullwidth" : "indented";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment