| {% extends "melange/base.html" %} |
| {% comment %} |
| Licensed under the Apache License, Version 2.0 (the "License"); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| {% endcomment %} |
| |
| {% block page_content %} |
| |
| {# workaround to link to programs not hosted by melange #} |
| <section class="projects future-projects"> |
| <div class="project future-project"> |
| <h2 class="project-title">Current Programs</h2> |
| <p><a href="http://g.co/gsoc">Google Summer of Code 2016</a></p> |
| </div> |
| <div class="project future-project"> |
| <h2 class="project-title">Past Programs</h2> |
| <p><a href="http://g.co/codein">Google Code-in 2015</a></p> |
| </div> |
| </section> |
| |
| <section class="projects {% if active_programs_counter == 1 %}one-active{% else %}two-active{% endif %}"> |
| {% for program_section in program_sections %} |
| {{ program_section.render }} |
| {% empty %} |
| <span>Sorry, there are no active programs at this time</span> |
| {% endfor %} |
| </section> |
| |
| {% if contact_us_section.isAnyContactChannelSet %} |
| <section class="main-footer" role="contentinfo"> |
| {{ contact_us_section.render }} |
| </section> |
| {% endif %} |
| {% endblock page_content %} |