reports.html
15 lines
| 497 B
| text/html
|
HtmlDjangoLexer
|
r25 | {% extends 'base.html' %} | |
{% load static%} | |||
{% block content %} | |||
|
r35 | <p>Monthly reports of the conditions of the upper atmosphere.</p> | |
|
r25 | <div class="card-columns p-2"> | |
<div class="card text-justify"> | |||
<img src="{% static 'images/sw.jpg' %}" class="card-img-top" alt="..."> | |||
<div class="card-body"> | |||
<h5 class="card-title">Report No. 01</h5> | |||
<p class="card-text">{% lorem %}</p> | |||
<a href="#" class="btn btn-primary">Go</a> | |||
</div> | |||
</div> | |||
</div> | |||
<br><br> | |||
{% endblock content %} |