sarsooxyz.pyreact/templates/index.html

26 lines
653 B
HTML

{% extends 'base.html' %}
{% block title %}home{% endblock %}
{% block content %}
<div class="row">
<div class="col-9" style="text-align:center">
<p>electronic engineering student / disney intern</p>
<p>proficient in C, Java, Python</p>
{% if splash %}<p>{{ splash }}</p>{% endif %}
</div>
<div class="col-3 profile">
<img src="{{ staticroot }}me.jpg" height=150>
<p style="text-align: center">sarsoo</p>
</div>
</div>
<div class="gallerystrip row">
{% for image in art %}
<img src="{{ staticroot }}art/{{ image.file_name }}.jpg" alt="{{ image.file_name }}" class="col-pad-4">
{% endfor %}
</div>
{% endblock %}