17 lines
326 B
Plaintext
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> |