Created
August 24, 2017 19:14
-
-
Save amirkhan81/5eda4f6f5e87d4bd774626d77ef3532b to your computer and use it in GitHub Desktop.
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
@{ | |
var tags = Umbraco.TagQuery.GetContentByTag(member.Name); | |
var tagList = new List<IPublishedContent>(tags); | |
if(tagList.Any()){ | |
<div class="tagHighlights"> | |
<p>Featured Projects</p> | |
<div class="tags"> | |
@foreach(var tag in tagList) { | |
<p><a href="@tag.Url">@tag.Name</a></p> | |
} | |
</div> | |
</div> | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment