adding supporters view
Signed-off-by: rscnt <rascnt@gmail.com>
This commit is contained in:
parent
8b8d7733d3
commit
559fe2f698
5 changed files with 51 additions and 3 deletions
35
digitalglarus/templates/digitalglarus/supporters.html
Normal file
35
digitalglarus/templates/digitalglarus/supporters.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{% extends "digitalglarus/base.html" %}
|
||||
{% load staticfiles %}
|
||||
{% block title %}About{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="box">
|
||||
<div class="col-lg-12">
|
||||
<hr>
|
||||
<h2 class="intro-text text-center">
|
||||
Supporters
|
||||
</h2>
|
||||
<hr>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<img class="img-responsive img-border-left" src="{% static 'digitalglarus/img/img_4.png' %}" alt="">
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
{% for support in supporters %}
|
||||
<div class="col-md-4">
|
||||
<p>
|
||||
{{ support.name }}
|
||||
</p>
|
||||
<p>
|
||||
{{ support.description }}
|
||||
</p>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- /.container -->
|
||||
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue