20 lines
312 B
HTML
20 lines
312 B
HTML
@use super::statics::*;
|
|
|
|
@(body: Content)
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css" />
|
|
<title>pinussy</title>
|
|
</head>
|
|
|
|
<body>
|
|
@:body()
|
|
</body>
|
|
|
|
</html>
|