Added open source page, for declaring open source libraries.
This commit is contained in:
parent
91ee129a1a
commit
8968142063
|
|
@ -18,6 +18,11 @@ public class HomeController : Controller
|
|||
return View();
|
||||
}
|
||||
|
||||
public IActionResult OpenSource()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public IActionResult Privacy()
|
||||
{
|
||||
return View();
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
@{
|
||||
ViewBag.Title = "Open Source";
|
||||
Layout = "_Layout";
|
||||
}
|
||||
|
||||
<h2>Open Source Libraries</h2>
|
||||
|
||||
<table class="table">
|
||||
<thead>
|
||||
<th>Name</th>
|
||||
<th>Usage</th>
|
||||
<th>Links</th>
|
||||
</thead>
|
||||
</table>
|
||||
Loading…
Reference in New Issue