demystify-web 0.1.5

A web front end to demystify, a constraint solving tool for explaining puzzles
Documentation
{% extends "layout.html" %}
{% block title %}Demystify — {{ puzzle_name }}, round {{ round }}{% endblock title %}
{% block content %}
<div class="he-solver">
  <header class="he-solver-head">
    <div class="he-solver-head-left">
      <h1>{{ headline }}</h1>
    </div>
    {% if puzzle_info | length > 0 %}
    <div class="he-solver-head-right">
      {% for line in puzzle_info %}
      <p>{{ line }}</p>
      {% endfor %}
    </div>
    {% endif %}
  </header>

  {% include "partials/solver_stage.html" %}
</div>
{% endblock content %}