Created
January 12, 2016 14:54
-
-
Save adamhopkinson/d745d823c7e682563e41 to your computer and use it in GitHub Desktop.
Using a sitecore General Link field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
LinkField URL = item.Fields["URL"]; | |
if (URL != null) | |
{ | |
<a href="@URL.Url" target="@URL.Target" title="@URL.Title">@URL.Title ></a> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment