urbstudio/urbstudio/templates/noteworthy.html
2012-10-02 19:41:08 +05:30

66 lines
1.3 KiB
HTML
Executable file

{% extends 'inner.html' %}
{% load thumbnail %}
{% block title %} | Noteworthy {% endblock %}
{% block extra_meta_content %}: Noteworthy {% endblock %}
{% block extra2_head %}
<style type="text/css">
.noteworthy {
margin-bottom:40px;
overflow:auto;}
.noteworthy:last-child {
margin-bottom:10px;
}
.imgLinks {
padding-right:20px;
float:left;
width:200px;
}
.imgNone {
width:200px;
padding-right:20px;
float:left;
background:#000;
}
</style>
{% endblock %}
{% block contentId %}
id="showContent"
{% endblock %}
{% block inner_content %}
{% for n in noteworthy %}
<div class="noteworthy">
{% if n.image %}
{% thumbnail n.image "200" as im %}
<img src="{{ im.url }}" width="200" alt="" class="imgLinks">
{% endthumbnail %}
{% else %}
<div class="imgNone"></div>
{% endif %}
<p class="orange"><strong>{% if n.url %} <a href="{{ n.url }}" target="_blank"> {% endif %}{{ n.title }} {% if n.url %}</a> {% endif %}</strong></p>
<br>
<p>{{ n.description|linebreaksbr }}</p>
</div><!--NOTEWORTHY CLOSING -->
{% endfor %}
{% endblock %}