Adds missing file

This commit is contained in:
Sebastiaan Janssen
2017-01-22 17:55:23 +01:00
parent abc21a695b
commit 76f41e069a
@@ -0,0 +1,16 @@
@using OurUmbraco.Forum.Services
@inherits OurUmbraco.Our.Models.OurUmbracoTemplatePage
@{
var topicService = new TopicService(ApplicationContext.Current.DatabaseContext);
var topics = topicService.GetLatestTopics();
}
<ul>
@foreach (var topic in topics)
{
<li>
@topic.Title
</li>
}
</ul>