mirror of
https://github.com/Doctorado-ML/beflask.git
synced 2025-08-15 15:15:52 +00:00
11 lines
394 B
HTML
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 %}
|