Files @ 26ff31bb7878
Branch filter:

Location: website/www/conservancy/templates/base_projects.html

bsturmfels
progress bar: Drop JS, make mobile friendly, match design to new site.

The existing jQuery UI-based fundraising progress bar used a float layout,
making it hard to adapt for mobile use. Given that there is not interactivity,
I've dropped all the JS and switched to a flexbox layout. This works well
because the bar will stretch to fit the text rather than always maintaining its scale.
{% extends "base_conservancy.html" %}
{% block outercontent %}
    <div id="container">
         <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
            <h2>What We Do</h2>
            {% include 'submenus/what_we_do_partial.html' %}
            <h2>{% block category %}Projects{% endblock %} &amp; Services</h2>
            <ul>
            <li class="Current"><a href="/projects/current/">Current Member Projects</a></li>
            <li class="Applying"><a href="/projects/apply/">Applying</a></li>
            <li class="Services"><a href="/projects/services/">Member Project Services</a></li>
            <li class="Policies"><a href="/projects/policies/">Member Project Policies</a></li>
            </ul>
         </div>
               <div id="mainContent">{% block content %}{% endblock %}
               </div>
   </div>
{% endblock %}