Files
beflask/beflask/templates/index.html
Ricardo Montañana 869ba82695 Refactor project structure
Add version, multiple configs and pyproject
2023-06-11 18:09:00 +02:00

11 lines
394 B
HTML

{% extends "base.html" %}
{% block content %}
{% if benchmarks %}
<div class="d-flex align-items-center" style="height: 60vh">{% include "_benchmarks.html" %}</div>
{% else %}
<img src="{{ url_for('static', filename='img/robert-lukeman-_RBcxo9AU-U-unsplash.jpg') }}"
class="img-fluid"
alt="image robert lukeman">
{% endif %}
{% endblock %}