From 76f41e069afd10a2ef75f75e94d51accf10c4e96 Mon Sep 17 00:00:00 2001 From: Sebastiaan Janssen Date: Sun, 22 Jan 2017 17:55:23 +0100 Subject: [PATCH] Adds missing file --- .../Views/Partials/Forum/Latest.cshtml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 OurUmbraco.Site/Views/Partials/Forum/Latest.cshtml diff --git a/OurUmbraco.Site/Views/Partials/Forum/Latest.cshtml b/OurUmbraco.Site/Views/Partials/Forum/Latest.cshtml new file mode 100644 index 00000000..77347342 --- /dev/null +++ b/OurUmbraco.Site/Views/Partials/Forum/Latest.cshtml @@ -0,0 +1,16 @@ +@using OurUmbraco.Forum.Services +@inherits OurUmbraco.Our.Models.OurUmbracoTemplatePage + +@{ + var topicService = new TopicService(ApplicationContext.Current.DatabaseContext); + var topics = topicService.GetLatestTopics(); +} + + \ No newline at end of file