51 lines
1.2 KiB
HTML
51 lines
1.2 KiB
HTML
{% extends 'template.html' %}
|
|
|
|
{% block css %}
|
|
<link rel="stylesheet" href="{{url_for('static', filename='c_more_info/about_me.css')}}">
|
|
{% endblock %}
|
|
|
|
{% block usr_path %}
|
|
<li class="breadcrumb-item active" aria-current="page">
|
|
<a href="">
|
|
<span>Sobre mí</span>
|
|
</a>
|
|
</li>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
|
|
|
|
{% for ele in f_lst_glosary %}
|
|
{% for e in ele %}
|
|
<div class="modal fade" id="{{e[0]}}" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h1 class="modal-title fs-5" id="exampleModalLabel">
|
|
{{e[1]}}
|
|
</h1>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body">
|
|
{{e[2] | safe}}
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
|
|
Cerrar
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{{data[0][0] | safe}}
|
|
|
|
<div id="img_am">
|
|
<!-- <img src="{{ url_for('static', filename='source_imgs/about_me/img.gif') }}" alt="" > -->
|
|
</div>
|
|
{% endblock body %}
|