Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MVCViewLayoutPage.cshtml « Templates « MonoDevelop.AspNetCore « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3a6e04fb893543d950ae341a9674b0efb28ca1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>@ViewBag.Title</title>
</head>
<body>
    <div>
        @RenderBody()
    </div>
</body>
</html>