sarsooxyz.pyreact/templates/index.html

17 lines
531 B
HTML
Raw Normal View History

2019-02-17 00:00:31 +00:00
{% extends 'base.html' %}
{% block title %}home{% endblock %}
{% block content %}
<div class="row">
<p style="text-align:center">electronic engineering student</p>
2019-02-16 15:30:12 +00:00
</div>
2019-02-17 00:00:31 +00:00
<div class="gallerystrip row">
<img src="{{ url_for('static', filename='art/freddie.jpg') }}" alt="freddie gibbs" class="col-4">
<img src="{{ url_for('static', filename='art/self.jpg') }}" alt="me" class="col-4">
<img src="{{ url_for('static', filename='art/horse.jpg') }}" alt="tempation of saint anthony" class="col-4">
</div>
{% endblock %}