urbstudio/urbstudio/templates/noteworthy.html
2011-10-07 17:04:54 +05:30

45 lines
791 B
HTML
Executable file

{% extends 'inner.html' %}
{% block title %} | Noteworthy {% endblock %}
{% block extra_meta_content %}: Noteworthy {% endblock %}
{% block extra2_head %}
<style type="text/css">
.noteworthy {
margin-bottom:40px;
}
.noteworthy:last-child {
margin-bottom:10px;
}
.imgLinks {
padding-right:20px;
float:left;
width:200px;
height:150px;
}
</style>
{% endblock %}
{% block contentId %}
id="showContent"
{% endblock %}
{% block inner_content %}
<div class="noteworthy">
<br><br><br>
</div><!--NOTEWORTHY CLOSING -->
{% for n in noteworthy %}
<div class="noteworthy">
</div><!--NOTEWORTHY CLOSING -->
{% endfor %}
{% endblock %}