diff options
| author | 2014-02-28 08:49:41 -0300 | |
|---|---|---|
| committer | 2014-02-28 08:49:41 -0300 | |
| commit | 0f1e24f7888ba16fe5629c57fd00f0deacb63e5e (patch) | |
| tree | 7153a3a11b766f375b1d1c0a7adc599e0a9f9c55 /docs/creating-a-theme.txt | |
| parent | 04fc43563d3d5d4218004690b5e14c19c67bdcbc (diff) | |
| parent | 2828399ba5cbb14502b023d4de1ba02f13dd5055 (diff) | |
Merge tag 'upstream/6.3.0'
Upstream version 6.3.0
Diffstat (limited to 'docs/creating-a-theme.txt')
| -rw-r--r-- | docs/creating-a-theme.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/creating-a-theme.txt b/docs/creating-a-theme.txt index 1e67410..35c2dbf 100644 --- a/docs/creating-a-theme.txt +++ b/docs/creating-a-theme.txt @@ -263,7 +263,7 @@ It turns out ``bootstrap`` doesn' have one of those! That's because it inherits <%inherit file="base.tmpl"/> <%block name="content"> % for post in posts: - <div class="postbox"> + <div class="postbox post-${post.meta('type')}"> <h1><a href="${post.permalink()}">${post.title()}</a> <small> ${messages("Posted")}: <time class="published" datetime="${post.date.isoformat()}">${post.formatted_date(date_format)}</time> @@ -291,7 +291,7 @@ box, add links for the posts tags, move the date there, etc. <%inherit file="base.tmpl"/> <%block name="content"> % for post in posts: - <div class="postbox"> + <div class="postbox post-${post.meta('type')}"> <h1><a href="${post.permalink()}">${post.title()}</a></h1> <div class="meta" style="background-color: rgb(234, 234, 234); "> <span class="authordate"> |
