urbstudio/urbstudio/templates/noteworthy.html
2011-10-07 02:55:56 +05:30

60 lines
1.5 KiB
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">
<div class="imgLinks">
<img src="img/linksDummy.jpg" width="200" height="150" alt="links-dummy">
</div>
<p class="orange"><strong>Title</strong></p>
<br>
<p>This is dummy text about a beautiful architectural website.</p>
<br>
<a href="">Read more</a>
<br><br><br>
</div><!--NOTEWORTHY CLOSING -->
{% for n in noteworthy %}
<div class="noteworthy">
<img src="{{ n.image.url }}" width="200" height="150" alt="{{ n.title }}" class="imgLinks">
<p class="orange"><strong>{{ n.title }}</strong></p>
<br>
<p>{{ n.description }}</p>
<br>
<a href="{{ n.url }}">{{ n.url }}</a>
<br><br><br>
</div><!--NOTEWORTHY CLOSING -->
{% endfor %}
{% endblock %}