camp/content/templates/index.html

54 lines
1.7 KiB
HTML
Raw Normal View History

2017-06-10 09:59:00 +00:00
{% extends 'base.html' %}
{% block content %}
{% for content in latest_content_list %}
2017-07-03 08:14:07 +00:00
{% if forloop.counter == 4 %}
2017-06-10 09:59:00 +00:00
<div class="large-8 medium-8 columns special-column">
<img src="http://camputer.org/images/{{content.image}}">
<div class="index-text">
2017-07-03 08:14:07 +00:00
<h4><a href="/{{content.type}}/{{ content.shortname }}/" class="big-title">{{content.title}} </a></h4>
<h6 class="big-date"> <font color="#ef4e5c"> <b> {{ content.datestart }} </b></font> <br/>
Camp Roof </h6>
<p> {{content.body|striptags|truncatechars:250}} <a href="/{{content.type}}/{{ content.shortname }}">read more</a> </p>
2017-06-10 09:59:00 +00:00
</div>
{% endif %}
{% endfor %}
</div>
<div class="large-4 medium-4 columns">
<h4 class="sidebar-h4"> Upcoming Events </h4>
<div class="row">
2017-07-03 08:14:07 +00:00
{% for content in latest_content_list %}
{% if content.type_id == 1 %}
<div class="row right-items">
<div class= "small-12 columns">
<h6> {{ content.title }} <br />
{{ content.formatted_header|safe }}
</h6>
</div>
</div>
{% endif %}
{% if content.type_id == 0 %}
2017-06-10 09:59:00 +00:00
<div class="row right-items">
<div class="small-6 columns">
<img src="http://camputer.org/images/{{ content.image }}">
</div>
<div class="small-6 columns">
2017-07-03 08:14:07 +00:00
<a href="/{{content.type}}/{{ content.shortname }}/" class="sidebar-title">{{ content.title }}</a>
2017-06-10 09:59:00 +00:00
<h6 class="sidebar-date"> <font color="#ef4e5c"> <b> {{ content.datestart }} </b></font> <br/>
We will add a place to fill this text </h6>
</div>
</div>
2017-07-03 08:14:07 +00:00
{% endif %}
2017-06-10 09:59:00 +00:00
{% endfor %}
2017-07-03 08:14:07 +00:00
2017-06-10 09:59:00 +00:00
</div>
</div>
{% endblock %}