You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
589 B
27 lines
589 B
3 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
{% if not head %}
|
||
|
<style type="text/css">
|
||
|
.railroad-heading {
|
||
|
font-family: monospace;
|
||
|
}
|
||
|
</style>
|
||
|
{% else %}
|
||
|
{{ hear | safe }}
|
||
|
{% endif %}
|
||
|
</head>
|
||
|
<body>
|
||
|
{{ body | safe }}
|
||
|
{% for diagram in diagrams %}
|
||
|
<div class="railroad-group">
|
||
|
<h1 class="railroad-heading">{{ diagram.title }}</h1>
|
||
|
<div class="railroad-description">{{ diagram.text }}</div>
|
||
|
<div class="railroad-svg">
|
||
|
{{ diagram.svg }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</body>
|
||
|
</html>
|