Files
OurUmbraco/OurUmbraco.Site/Views/MacroPartials/Forum/Latest.cshtml
T
2015-07-26 12:31:15 +02:00

17 lines
326 B
Plaintext

@using OurUmbraco.Forum.Services
@inherits Umbraco.Web.Macros.PartialViewMacroPage
@{
var topicService = new TopicService(ApplicationContext.DatabaseContext);
var topics = topicService.GetLatestTopics();
}
<ul>
@foreach (var topic in topics)
{
<li>
@topic.Title
</li>
}
</ul>