1
0

Repository cleanup, Added art

This commit is contained in:
Michael Gordeev
2019-11-09 12:36:38 +03:00
parent bbcb6b179e
commit 22fb87a132
145 changed files with 16 additions and 14597 deletions
+21
View File
@@ -0,0 +1,21 @@
using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using MyWebsite.Models;
namespace MyWebsite.Controllers
{
public class HomeController : Controller
{
// TODO: Add more specific OpenGraph meta tags
// TODO: Create custom error page
// TODO: Update Projects.json and Gallery.json
// TODO: Complete About page
// TODO: Make language switchable
public IActionResult Index() =>
View();
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error() =>
View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}