|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r76874 - in website/public_html/beta: site-tools/templates style-v2/css_0
From: dnljms_at_[hidden]
Date: 2012-02-04 08:57:51
Author: danieljames
Date: 2012-02-04 08:57:50 EST (Sat, 04 Feb 2012)
New Revision: 76874
URL: http://svn.boost.org/trac/boost/changeset/76874
Log:
Website: Add documentation link to front page releases.
Text files modified:
website/public_html/beta/site-tools/templates/index-src.html | 13 ++++++++++---
website/public_html/beta/style-v2/css_0/section-welcome.css | 3 ++-
2 files changed, 12 insertions(+), 4 deletions(-)
Modified: website/public_html/beta/site-tools/templates/index-src.html
==============================================================================
--- website/public_html/beta/site-tools/templates/index-src.html (original)
+++ website/public_html/beta/site-tools/templates/index-src.html 2012-02-04 08:57:50 EST (Sat, 04 Feb 2012)
@@ -15,14 +15,21 @@
emit('<h3>%s</h3>\n' % label)
emit('<ul>\n')
for entry in entries:
- emit('<li><span class="news-title">')
+ emit('<li>')
+ emit('<div class="news-title">')
if entry.download_item:
emit('<a href="%s">' % htmlencode(entry.download_item))
emit(entry.full_title_xml)
if entry.download_item:
emit('</a>')
- emit(' (release notes)</span>' % (htmlencode(entry.location)))
- emit('<span class="news-date">%s</span></li>\n' % (entry.web_date()))
+ emit('</div>')
+ emit('<div class="news-date">')
+ emit('Release Notes' % (htmlencode(entry.location)))
+ emit(' | ')
+ emit('Documentation' % (htmlencode(entry.documentation)))
+ emit('</div>')
+ emit('<div class="news-date">%s</div>' % (entry.web_date()))
+ emit('</li>\n')
emit('</ul>')
}$
</div>
Modified: website/public_html/beta/style-v2/css_0/section-welcome.css
==============================================================================
--- website/public_html/beta/style-v2/css_0/section-welcome.css (original)
+++ website/public_html/beta/style-v2/css_0/section-welcome.css 2012-02-04 08:57:50 EST (Sat, 04 Feb 2012)
@@ -36,12 +36,13 @@
}
#news .news-title {
display: block;
+ margin-bottom: 0.2em;
}
#news .news-description {
display: block;
padding: 0.25em 0em 0.25em 0em;
}
-#news .news-date {
+#news.news-links, #news .news-date {
display: block;
padding: 0em 0em 0.5em 0em;
color: #777;
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk