mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
18 lines
366 B
Plaintext
18 lines
366 B
Plaintext
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>@ViewBag.Title</title>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<h1>Product Information</h1>
|
|
<div style="padding: 20px; border: solid medium black; font-size:20pt;">
|
|
@RenderBody()
|
|
</div>
|
|
<h2>Visit <a href="http://apress.com">Apress</a></h2>
|
|
</div>
|
|
</body>
|
|
</html>
|