23 lines
404 B
HTML
23 lines
404 B
HTML
<!DOCTYPE html>
|
|||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>{{ filename }}</title>
|
||
|
|
<style>
|
||
|
|
pre {
|
||
|
|
white-space: pre-wrap;
|
||
|
|
word-wrap: break-word;
|
||
|
|
background: #f4f4f4;
|
||
|
|
padding: 1em;
|
||
|
|
border: 1px solid #ccc;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>{{ filename }}</h1>
|
||
|
|
|
||
|
|
<pre>{{ content }}</pre>
|
||
|
|
|
||
|
|
<p><a href="/">← Back</a></p>
|
||
|
|
</body>
|
||
|
|
</html>
|