into-the-kosmos-generador/templates/personaje.html
2023-01-20 17:12:25 +01:00

45 lines
998 B
HTML

<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Into the Kosmos</title>
<meta name="description" content="Generador de PJ para Into the Kosmos">
<meta name="author" content="serxoz">
<style>
main {
font-family: monospace, monospace;
max-width: 38rem;
padding: 2rem;
margin: auto;
}
ul {
margin-top: 0;
}
</style>
</head>
<body>
<main id="app">
<div>Nombre: {{ personaje.nombre }}</div>
<hr>
<div>FUE: {{ personaje.fue }}</div>
<div>AGI: {{ personaje.agi }}</div>
<div>MEN: {{ personaje.men }}</div>
<div>PG: {{ personaje.pg }}</div>
<div>Trasfondo: {{ personaje.trasfondo }}</div>
<hr>
<div>Equipo:
<ul>
{% for item in personaje.equipo %}
<li>{{ item }}</li>
{% endfor %}
</ul>
</div>
</main>
</body>
</html>