diff --git a/src/Orchard.Web/Modules/Orchard.Tags/Views/Parts/TagCloud.cshtml b/src/Orchard.Web/Modules/Orchard.Tags/Views/Parts/TagCloud.cshtml index 8dde42e1c..24b0e3ed2 100644 --- a/src/Orchard.Web/Modules/Orchard.Tags/Views/Parts/TagCloud.cshtml +++ b/src/Orchard.Web/Modules/Orchard.Tags/Views/Parts/TagCloud.cshtml @@ -1,12 +1,19 @@ -@using Orchard.Tags.Models +@using Orchard.Tags.Models \ No newline at end of file + @if (((IEnumerable)Model.TagCounts).Any()) { + foreach (TagCount tagCount in Model.TagCounts) { +
  • + @Html.ActionLink(tagCount.TagName, "Search", "Home", new { + area = "Orchard.Tags", + tagName = tagCount.TagName + }, null + ) +
  • + } + } + else { +
  • + @T("There are no tags to display.") +
  • + } +