19 lines
412 B
HTML
Executable File
19 lines
412 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>{{ posts['title'] }}</title>
|
|
</head>
|
|
<body>
|
|
<a href="../">返回上级</a>
|
|
<br>
|
|
<h1>{{ posts['title'] }}</h1>
|
|
<br>
|
|
<br>
|
|
{{ posts['content'].replace('&a&a','<style>a{text-decoration: none;}</style>') | safe}}
|
|
</body>
|
|
</html>
|
|
<style>
|
|
body {
|
|
background-color: rgb(175, 223, 255);
|
|
}
|
|
</style> |