28 lines
448 B
HTML
28 lines
448 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>D&D Characters</title>
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bulma@1.0.2/css/bulma.min.css"
|
|
>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="columns is-centered is-gapless">
|
|
{%for character in sheets%}
|
|
<div class="column is-narrow" >
|
|
<p class="bd-notification">
|
|
<pre>{{character | join("\n")}}</pre>
|
|
</p>
|
|
</div>
|
|
{%endfor%}
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|