Skip to content

Instantly share code, notes, and snippets.

@bootnumlock
Created January 23, 2015 22:12
Show Gist options
  • Select an option

  • Save bootnumlock/08f43cf7cd8e2de731f7 to your computer and use it in GitHub Desktop.

Select an option

Save bootnumlock/08f43cf7cd8e2de731f7 to your computer and use it in GitHub Desktop.
@{
var tagsFromService = UmbracoContext.Application.Services.TagService.GetAllContentTags("ArticulateTags");
}
<ul class="list-unstyled">
@foreach(var newTag in tagsFromService)
{
<li><a href="/burn-after-reading/tags/@newTag.Text">@newTag.Text</a> (@newTag.NodeCount)</li>
}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment