diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-29 19:40:47 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-10-29 19:40:47 -0400 |
commit | ef90bdbde5b473d866c74053a7dd23fbd0691b53 (patch) | |
tree | db8067999193769a53eacc1b5fa225cfd1a3e45f /src/SMAPI.Web/Views/Shared | |
parent | 3d8bdacc8cb5c9d5514e052d5d4c1d5f2dbc6e9e (diff) | |
parent | 650d729bc3e58ec1ecbb554805f8600f63b59a13 (diff) | |
download | SMAPI-ef90bdbde5b473d866c74053a7dd23fbd0691b53.tar.gz SMAPI-ef90bdbde5b473d866c74053a7dd23fbd0691b53.tar.bz2 SMAPI-ef90bdbde5b473d866c74053a7dd23fbd0691b53.zip |
Merge branch 'add-log-parser' into develop
Diffstat (limited to 'src/SMAPI.Web/Views/Shared')
-rw-r--r-- | src/SMAPI.Web/Views/Shared/_Layout.cshtml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/SMAPI.Web/Views/Shared/_Layout.cshtml b/src/SMAPI.Web/Views/Shared/_Layout.cshtml new file mode 100644 index 00000000..547a8178 --- /dev/null +++ b/src/SMAPI.Web/Views/Shared/_Layout.cshtml @@ -0,0 +1,30 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8" /> + <title>@ViewData["Title"] - SMAPI.io</title> + <link rel="stylesheet" href="~/Content/css/main.css" /> + @RenderSection("Head", required: false) +</head> +<body> + <div id="sidebar"> + <h4>SMAPI</h4> + <ul> + <li><a href="https://stardewvalleywiki.com/Modding:Index">FAQs & guides</a></li> + <li><a href="https://github.com/pathoschild/SMAPI/releases">Download SMAPI</a></li> + <li><a href="https://discord.gg/stardewvalley">Get help on Discord</a></li> + </ul> + </div> + <div id="content-column"> + <div id="content"> + <h1>@ViewData["Title"]</h1> + @RenderBody() + </div> + <div id="footer"> + <div id="license"> + Hi! You can <a href="https://github.com/pathoschild/SMAPI" title="view source">view the source code</a> or <a href="https://github.com/pathoschild/SMAPI/issues" title="report issue">report a bug or suggestion</a>. + </div> + </div> + </div> +</body> +</html> |