13 lines
277 B
HTML
13 lines
277 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>{{ item.Title }}</title>
|
||
|
|
<link rel="stylesheet" href="/static/styles.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h1>{{ item.Title }}</h1>
|
||
|
|
<p>{{ item.Body }}</p>
|
||
|
|
<a href="/items">Volver a la lista</a>
|
||
|
|
</body>
|
||
|
|
</html>
|