21 lines
387 B
Plaintext
21 lines
387 B
Plaintext
@using Microsoft.AspNetCore.Mvc.TagHelpers
|
|
<!DOCTYPE html>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" type="text/css" href="/css/table.css" asp-append-version="true" />
|
|
</head>
|
|
<body>
|
|
<div class="foot" style="margin-bottom:10px">
|
|
<a href="/">返回首页</a>
|
|
</div>
|
|
|
|
<div class="main">
|
|
@RenderBody()
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|
|
|