mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 16:06:21 +00:00
33 lines
619 B
Plaintext
33 lines
619 B
Plaintext
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<style type="text/css">
|
|
div.layout { background-color: lightgray; }
|
|
div.view { border: thin solid black; margin: 10px 0;}
|
|
</style>
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
@RenderSection("Header")
|
|
<div class="layout">
|
|
This is part of the layout
|
|
</div>
|
|
|
|
@RenderSection("Body")
|
|
<div class="layout">
|
|
This is part of the layout
|
|
</div>
|
|
|
|
@RenderSection("Footer")
|
|
|
|
<div class="layout">
|
|
This is part of the layout
|
|
</div>
|
|
|
|
@RenderSection("scripts", false)
|
|
</body>
|
|
</html>
|