28 lines
875 B
Plaintext
28 lines
875 B
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="article.aspx.cs" Inherits="Main_article" %>
|
||
|
|
|
||
|
|
<!DOCTYPE html>
|
||
|
|
|
||
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head runat="server">
|
||
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
|
<title></title>
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-image: url(../images/articlebg.jpg);
|
||
|
|
background-position: center center;
|
||
|
|
background-repeat: no-repeat;
|
||
|
|
background-attachment: fixed;
|
||
|
|
background-size: cover;
|
||
|
|
padding: 10px 200px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h2 style="text-align: center"><%=title %></h2>
|
||
|
|
<div style="text-align: right">发布者:<%=author %> 观看次数:<%=hits %> <%=updatetime %></div>
|
||
|
|
<div>
|
||
|
|
<%=content %>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|