witten
/
luminotes
Archived
1
0
Fork 0

Adding mini screenshot thumbnails to the front page.

This commit is contained in:
Dan Helfman 2008-03-05 23:35:22 +00:00
parent 0828cea4ec
commit 2c179192d5
9 changed files with 104 additions and 37 deletions

View File

@ -131,7 +131,7 @@
.heading {
padding: 0.5em;
margin-top: 0.5em;
margin-top: 1em;
text-align: center;
}
@ -140,17 +140,44 @@
}
.what_is_luminotes_area {
float: right;
width: 400px;
margin-left: 20px;
margin-bottom: 1em;
}
.what_is_luminotes_text {
text-align: left;
}
.thumbnail {
border: 1px solid #999999;
}
.thumbnail_caption {
font-size: 75%;
font-weight: bold;
margin-top: 0.5em;
}
.thumbnail_caption_detail {
font-size: 75%;
margin-top: 0.25em;
}
.thumbnail_cell {
text-align: center;
padding: 0.75em 0.5em 0.25em 0.5em;
width: 175px;
}
.thumbnail_area {
background-color: #fffece;
padding-bottom: 0.5em;
}
.quotes_area {
float: right;
width: 400px;
margin-left: 20px;
}
.quote {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.9 KiB

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

Binary file not shown.

View File

@ -1,5 +1,5 @@
from Product_page import Product_page
from Tags import Div, Img, A, P, Table, Td, Li, Span, I
from Tags import Div, Img, A, P, Table, Tr, Td, Li, Span, I
class Front_page( Product_page ):
@ -63,40 +63,7 @@ class Front_page( Product_page ):
Div(
Div(
Img(
src = u"/static/images/what_is_luminotes.png",
class_ = u"heading", width = u"214", height = u"29",
alt = u"What is Luminotes?",
),
Div(
P(
u"""
Luminotes is a personal wiki notebook for organizing your notes and ideas.
You don't have to use any special markup codes or install any software. You
simply start typing.
""",
),
P(
u"""
With Luminotes, you deal with several notes all at once on the same web page,
so you get a big-picture view of what you're working on and can easily make
links from one concept to another.
""",
A( u"Read more.", href = u"/take_a_tour" ),
),
P(
u"""
Luminotes is open source / free software and licensed under the terms of the
GNU GPL.
""",
),
class_ = u"what_is_luminotes_text",
),
class_ = u"what_is_luminotes_area",
),
Div(
P(
Img(
src = u"/static/images/quotes.png",
class_ = u"heading", width = u"253", height = u"31",
@ -170,6 +137,79 @@ class Front_page( Product_page ):
class_ = u"quotes_area",
),
Div(
Img(
src = u"/static/images/what_is_luminotes.png",
class_ = u"heading", width = u"214", height = u"29",
alt = u"What is Luminotes?",
),
Div(
P(
u"""
Luminotes is a personal wiki notebook for organizing your notes and ideas.
You don't have to use any special markup codes or install any software. You
simply start typing.
""",
),
Table(
Tr(
Td(
A(
Img( src = u"/static/images/wysiwyg_thumb.png", width = u"175", height = "100", class_ = u"thumbnail" ),
href = u"/static/images/wysiwyg.png",
target = u"_new",
),
Div( u"Create a wiki visually", class_ = u"thumbnail_caption" ),
Div( u"Make a wiki as easily as writing a document.", class_ = u"thumbnail_caption_detail" ),
class_ = u"thumbnail_cell",
),
Td(
A(
Img( src = u"/static/images/big_picture_thumb.png", width = u"175", height = "100", class_ = u"thumbnail" ),
href = u"/static/images/big_picture.png",
target = u"_new",
),
Div( u"Link your notes together", class_ = u"thumbnail_caption" ),
Div( u"Connect your thoughts with links between notes.", class_ = u"thumbnail_caption_detail" ),
class_ = u"thumbnail_cell",
),
),
Tr(
Td(
A(
Img( src = u"/static/images/download_thumb.png", width = u"175", height = "100", class_ = u"thumbnail" ),
href = u"/static/images/screenshot.png",
target = u"_new",
),
Div( u"Take your wiki to go", class_ = u"thumbnail_caption" ),
Div( u"Download your entire wiki with a single click.", class_ = u"thumbnail_caption_detail" ),
class_ = u"thumbnail_cell",
),
Td(
A(
Img( src = u"/static/images/share_thumb.png", width = u"175", height = "100", class_ = u"thumbnail" ),
href = u"/static/images/share.png",
target = u"_new",
),
Div( u"Share your thoughts", class_ = u"thumbnail_caption" ),
Div( u"Invite friends and colleagues to collaborate.", class_ = u"thumbnail_caption_detail" ),
class_ = u"thumbnail_cell",
),
),
class_ = u"thumbnail_area",
),
P(
u"""
Luminotes is open source / free software and licensed under the terms of the
GNU GPL.
""",
),
class_ = u"what_is_luminotes_text",
),
class_ = u"what_is_luminotes_area",
),
class_ = u"wide_center_area",
),