Changeset - f426e60136a2
[Not reviewed]
0 4 1
Bradley Kuhn (bkuhn) - 13 years ago 2010-10-03 22:37:08
bkuhn@ebb.org
Mostly got a sidebar on the left working, for submenu.
Modifications to the templates to take advantage of new submenu.
Some content changes with "about" section, where I was implementing the changes.
5 files changed with 74 insertions and 25 deletions:
0 comments (0 inline, 0 general)
www/conservancy/static/about/contact/index.html
Show inline comments
 
{% extends "base_conservancy.html" %}
 
{% extends "base_about.html" %}
 
{% block subtitle %}Contact - {% endblock %}
 
{% block category %}contact{% endblock %}
 
{% block submenuselection %}Contact{% endblock %}
 
{% block content %}
www/conservancy/static/about/index.html
Show inline comments
 
{% comment %}THIS PAGE IS UNLINKED
 
{% extends "base_conservancy.html" %}
 
{% extends "base_about.html" %}
 
{% block subtitle %}About - {% endblock %}
...
 
@@ -7,6 +6,5 @@
 

	
 
<p>The Software Freedom Conservancy, Inc. is a not-for-profit organization
 
that promotes the use and development of free and open source software by
 
providing a range of pro-bono services to Free, Libre and Open Source
 
Software (FLOSS) projects.</p>
 
<p>The Software Freedom Conservancy, Inc. is a 501(c)(3) not-for-profit
 
organization incorporated in New York.  Conservancy is managed by
 
its <a href="/about/board/"> board of directors.</a></p>
 

	
...
 
@@ -50,2 +48 @@ inspection:</p>
 
{% endblock %}
 
{% endcomment %}
www/conservancy/static/conservancy.css
Show inline comments
...
 
@@ -13,3 +13,3 @@ body {
 
  font-family: "Lucida Grande",Verdana,Lucida,Helvetica,Arial,sans-serif;
 
  font-size: 90%;
 
  font-size: 95%;
 
}
...
 
@@ -24,3 +24,3 @@ h3 { margin-top: .6em; margin-bottom: .4em; }
 
#mainContent h1 { border-bottom: 1px solid #00334b; }
 
h2 { border-bottom: 1px solid #aaa; }
 
#mainContent h2 { border-bottom: 1px solid #aaa; }
 

	
...
 
@@ -95,4 +95,10 @@ body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 

	
 
#mainContent {
 
    margin-left: 50px;
 
    margin-right: 50px;
 
}
 

	
 
#container {
 
    width: 100%;
 
    overflow: hidden;
 
}
...
 
@@ -100,3 +106,4 @@ body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
    background: #fffff;
 
    margin-left: 200px;
 
    margin-left: 210px;
 
    margin-right: 50px;
 
    padding-bottom: 32767px;
...
 
@@ -107,6 +114,7 @@ body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
    float: left;
 
    background-color: #e5e5e5; 
 
    padding-bottom: 32767px;
 
    margin-bottom: -32767px;
 
    background-color: #e5e5e5; 
 
}
 

	
 
#container #sidebar li {
...
 
@@ -117,6 +125,13 @@ body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
    border: 1px solid #CCC;
 
    background: #fff url(/img/nav-bg.png) bottom repeat-x;
 
}
 
#container #sidebar li#selected {
 

	
 
#container #sidebar.Directors ul li.Directors,
 
#container #sidebar.Contact ul li.Contact,
 
#container #sidebar.Officers ul li.Officers,
 
#container #sidebar.Staff ul li.Staff
 
{
 
    color: #000033;
 
    font-weight: bold;
 
    background: #fff url(/img/nav-bg-up.png) top repeat-x; color: #000;
 
}
...
 
@@ -124,3 +139,3 @@ body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
    text-align: center;
 
    font-size: 140%;
 
    font-size: 150%;
 
    margin: 1.5em 0 0.8em 0;
...
 
@@ -214,3 +229,2 @@ span.subsubsectionToc { padding-left: 6em;}
 

	
 

	
 
body.conservancy-overview #navbar ul li.overview a,
...
 
@@ -218,3 +232,3 @@ body.conservancy-members #navbar ul li.members a,
 
body.conservancy-news #navbar ul li.news a,
 
body.conservancy-directors #navbar ul li.directors a,
 
body.conservancy-About #navbar ul li.About a,
 
body.conservancy-officers #navbar ul li.officers a,
...
 
@@ -222,2 +236,4 @@ body.conservancy-contact #navbar ul li.contact a,
 
body.conservancy-donate #navbar ul li.donate a /* NO COMMA HERE! */
 
  { background: #fff url(http://www.softwarefreedom.org/img/nav-bg-up.png) top repeat-x; color: #000; }
 
{ 
 
    font-weight: bold;
 
    background: #fff url(/img/nav-bg-up.png) top repeat-x; color: #000; }
www/conservancy/templates/base_about.html
Show inline comments
 
new file 100644
 
{%
 
# Copyright 2005-2008, James Garrison
 
# Copyright 2010, Bradley M. Kuhn
 

	
 
# This software's license gives you freedom; you can copy, convey,
 
# propagate, redistribute, modify and/or redistribute modified versions of
 
# this program under the terms of the GNU Affero General Public License
 
# (AGPL) as published by the Free Software Foundation (FSF), either
 
# version 3 of the License, or (at your option) any later version of the
 
# AGPL published by the FSF.
 
#
 
# This program is distributed in the hope that it will be useful, but
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero
 
# General Public License for more details.
 
#
 
# You should have received a copy of the GNU Affero General Public License
 
# along with this program in a file in the toplevel directory called
 
# "AGPLv3".  If not, see <http://www.gnu.org/licenses/>.
 

	
 
# req.subprocess_env is not set when the PostReadRequestHandler runs,
 
# so we just bypass it altogether and set the relevant variable here.
 
# See deployment documentation for more info.
 

	
 
{% extends "base_conservancy.html" %}
 
{% block outercontent %}
 
    <div id="container">
 
         <div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
 
            <h2>{% block category %}About{% endblock %}</h2>
 
            <ul>
 
            <li class="Contact"><a href="/about/contact">Contact</a></li>
 
            <li class="Directors"><a href="/about/board/">Directors</a></li>
 
            <li class="Officers"><a href="/about/officers/">Officers</a></li>
 
            <li class="Staff"><a href="/about/officers/">Staff</a></li>
 
            </ul>
 
         </div>
 
               <div id="mainContent">{% block content %}{% endblock %}
 
               </div>
 
   </div>
 
{% endblock %}
www/conservancy/templates/base_conservancy.html
Show inline comments
...
 
@@ -24,6 +24,4 @@
 
          <li class="news"><a href="/news/">News</a></li>
 
          <li class="directors"><a href="/about/team/board/">Directors</a></li>
 
	  <li class="officers"><a href="/about/team/officers/">Officers</a></li>
 
          <li class="contact"><a href="/about/contact/">Contact</a></li>
 
	  <li class="donate"><a href="/donate/">Donations</a></li>
 
          <li class="About"><a href="/about/">About</a></li>
 
	  <li class="donate"><a href="/donate/">Support Conservancy!</a></li>
 
	</ul>
...
 
@@ -32,5 +30,3 @@
 
    </div>
 
    <div id="mainContent">
 
      {% block outercontent %}<div class="singleColumn">{% block content %}{% endblock %}</div>{% endblock %}
 
    </div>
 
      {% block outercontent %}<div id="mainContent">{% block content %}{% endblock %}</div>{% endblock %}
 
    <div id="conservancyfooter">
0 comments (0 inline, 0 general)