diff options
author | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-08-19 02:32:27 +0000 |
---|---|---|
committer | luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f <luxagraf@c63593aa-01b0-44d9-8516-4b9c7e931d7f> | 2010-08-19 02:32:27 +0000 |
commit | 32c663c8da9658f8efe06cc56b4a74fab03c2667 (patch) | |
tree | 89abbccdc160d054962faec3f747c7125c63af07 /templates/archives | |
parent | 432e39917fe226630abf4d3c314a765fc8ff9e61 (diff) |
refactored all sass stylesheets to reduce file size and speed up page loads
Diffstat (limited to 'templates/archives')
-rw-r--r-- | templates/archives/photos.html | 10 | ||||
-rw-r--r-- | templates/archives/projects.html | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/templates/archives/photos.html b/templates/archives/photos.html index 84cbf01..85bc498 100644 --- a/templates/archives/photos.html +++ b/templates/archives/photos.html @@ -21,12 +21,12 @@ <ul id="photo-galleries">{% autopaginate object_list 18 %} {% for object in object_list %} <li> <div class="figure"> - <a href="{{object.get_absolute_url}}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a> + <a href="{{object.get_absolute_url}}"><img src="{{object.get_main_image}}" alt="{{ object.set_title }}"/></a> + <span class="legend"> + <h3>{{object.set_title}}</h3> + <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p> + </span> </div> - <span class="legend"> - <h3>{{object.set_title}}</h3> - <p>{{object.set_desc|truncatewords:30|smartypants|safe}}</p> - </span> </li>{% endfor %} </ul> diff --git a/templates/archives/projects.html b/templates/archives/projects.html index 8efe6aa..2f0d607 100644 --- a/templates/archives/projects.html +++ b/templates/archives/projects.html @@ -20,7 +20,7 @@ <ul class="project-tease"> <li> <div class="tease"> - <h4><a href="{{project.get_absolute_url}}">{{project.title|safe}}{{project.subtitle|safe}}</a></h4> + <h3><a href="{{project.get_absolute_url}}">{{project.title|safe}}{{project.subtitle|safe}}</a></h3> <div class="lede hyphenate">{{project.lede|smartypants|safe}}</div> <span class="button"><a href="{{project.get_absolute_url}}">More »</a></span> |