Moving extensions, adding screenshots to press page. (Still need to take better screenshots that are full-size)

This commit is contained in:
Samuel Clay 2011-04-12 20:02:48 -04:00
parent 8c727743eb
commit 69084e0351
70 changed files with 59 additions and 2 deletions

View file

@ -5046,6 +5046,29 @@ background: transparent;
.NB-static-press-reviews .NB-press-date {
color: #404040;
}
.NB-static-press .NB-press-screenshots {
overflow: hidden;
list-style: none;
margin: 0;
padding: 0;
}
.NB-static-press .NB-press-screenshot {
float: left;
display: block;
width: 276px;
text-align: center;
margin: 0 24px 24px 0;
font-size: 16px;
line-height: 20px;
}
.NB-static-press .NB-press-screenshot.NB-last {
margin-right: 0;
}
.NB-static-press .NB-press-screenshot img {
width: 274px;
border: 1px solid #303030;
margin: 0 0 12px 0;
}
/* ============== */
/* = About page = */

View file

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 69 KiB

View file

Before

Width:  |  Height:  |  Size: 134 KiB

After

Width:  |  Height:  |  Size: 134 KiB

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View file

Before

Width:  |  Height:  |  Size: 795 B

After

Width:  |  Height:  |  Size: 795 B

View file

Before

Width:  |  Height:  |  Size: 55 KiB

After

Width:  |  Height:  |  Size: 55 KiB

View file

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 62 KiB

View file

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View file

Before

Width:  |  Height:  |  Size: 92 KiB

After

Width:  |  Height:  |  Size: 92 KiB

View file

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View file

Before

Width:  |  Height:  |  Size: 95 KiB

After

Width:  |  Height:  |  Size: 95 KiB

View file

Before

Width:  |  Height:  |  Size: 795 B

After

Width:  |  Height:  |  Size: 795 B

View file

Before

Width:  |  Height:  |  Size: 585 KiB

After

Width:  |  Height:  |  Size: 585 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

View file

@ -1,6 +1,6 @@
{% extends 'base.html' %}
{% block bodyclass %}NB-static{% endblock %}
{% block bodyclass %}NB-static NB-static-press{% endblock %}
{% block content %}
@ -10,10 +10,14 @@
<div class="NB-module">
<h5 class="NB-module-title">Press Information and Resources</h5>
<div class="NB-module-content">
<h3>Contact</h3>
Thank you for your interest in NewsBlur. NewsBlur is built by a solo developer:
<ul>
<li><a href="http://www.samuelclay.com">Samuel Clay</a>, founder, <a href="mailto:samuel@ofbrooklyn.com">samuel@ofbrooklyn.com</a></li>
<li><a href="http://www.samuelclay.com">Samuel Clay</a>, founder, <a href="mailto:samuel@ofbrooklyn.com">samuel@ofbrooklyn.com</a>, <a href="http://twitter.com/samuelclay">@samuelclay</a></li>
</ul>
Contact Samuel for interviews, comments, and questions about NewsBlur. As another
ambitious New Yorker, he is happy to talk about NewsBlur.
@ -25,6 +29,36 @@
<img src="{{ MEDIA_URL }}/img/logo_newsblur.png">
<img src="{{ MEDIA_URL }}/img/favicon.png">
<h3>Screenshots</h3>
<ul class="NB-press-screenshots">
<li class="NB-press-screenshot">
<a href="{{ MEDIA_URL }}/img/static/screenshot-1.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-1.png" /></a>
<div class="NB-press-screenshot-text">Read the original site</div>
</li>
<li class="NB-press-screenshot NB-last">
<a href="{{ MEDIA_URL }}/img/static/screenshot-2.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-2.png" /></a>
<div class="NB-press-screenshot-text">Artificial Intelligence</div>
</li>
<li class="NB-press-screenshot">
<a href="{{ MEDIA_URL }}/img/static/screenshot-3.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-3.png" /></a>
<div class="NB-press-screenshot-text">Feed view</div>
</li>
<li class="NB-press-screenshot NB-last">
<a href="{{ MEDIA_URL }}/img/static/screenshot-4.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-4.png" /></a>
<div class="NB-press-screenshot-text">Bookmarklet to easily add sites</div>
</li>
<li class="NB-press-screenshot">
<a href="{{ MEDIA_URL }}/img/static/screenshot-5.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-5.png" /></a>
<div class="NB-press-screenshot-text">Statistics and History</div>
</li>
<li class="NB-press-screenshot NB-last">
<a href="{{ MEDIA_URL }}/img/static/screenshot-6.png"><img src="{{ MEDIA_URL }}/img/static/screenshot-6.png" /></a>
<div class="NB-press-screenshot-text">Easily import from Google Reader</div>
</li>
</ul>
</div>
</div>