This commit is contained in:
Sanj 2012-10-02 18:20:55 +05:30
commit 86fdca4c90
3 changed files with 5 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

View File

@ -56,6 +56,7 @@ $(document).ready(function() {
<img src="/static/slider_imgs/Slide28.JPG" width="750" height="563"> <img src="/static/slider_imgs/Slide28.JPG" width="750" height="563">
<img src="/static/slider_imgs/Slide29.JPG" width="750" height="563"> <img src="/static/slider_imgs/Slide29.JPG" width="750" height="563">
<img src="/static/slider_imgs/Slide30.JPG" width="750" height="563"> <img src="/static/slider_imgs/Slide30.JPG" width="750" height="563">
<img src="/static/slider_imgs/Slide31.jpg" width="750" height="563">
</div><!--SLIDER CLOSING--> </div><!--SLIDER CLOSING-->
{% endblock %} {% endblock %}

View File

@ -21,7 +21,6 @@ margin-bottom:10px;
padding-right:20px; padding-right:20px;
float:left; float:left;
width:200px; width:200px;
height:150px;
} }
</style> </style>
@ -35,13 +34,13 @@ height:150px;
{% for n in noteworthy %} {% for n in noteworthy %}
<div class="noteworthy"> <div class="noteworthy">
{% thumbnail n.image "200x150" crop='center' as im %} {% thumbnail n.image "200" as im %}
<img src="{{ im.url }}" width="200" height="150" alt="" class="imgLinks"> <img src="{{ im.url }}" width="200" alt="" class="imgLinks">
{% endthumbnail %} {% endthumbnail %}
<p class="orange"><strong><a href="{{ n.url }}" target="_blank">{{ n.title }}</a></strong></p> <p class="orange"><strong>{% if n.url %} <a href="{{ n.url }}" target="_blank"> {% endif %}{{ n.title }} {% if n.url %}</a> {% endif %}</strong></p>
<br> <br>
<p>{{ n.description }}</p> <p>{{ n.description|linebreaksbr }}</p>
</div><!--NOTEWORTHY CLOSING --> </div><!--NOTEWORTHY CLOSING -->