Figure out theme problems!

This commit is contained in:
2023-03-24 10:03:19 -05:00
parent b63d7f546c
commit 8876e34473
43 changed files with 73 additions and 79 deletions

View File

@@ -0,0 +1,17 @@
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrchardCore.Cms.MarkdownImport.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}