| {% extends "v2/modules/gsoc/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 %} |
| {{ logged_in_msg.render }} |
| |
| <div id="how-it-works" class="block full home-block-1"> |
| <h2 id="title-section-how-it-works">How Google Summer of Code Works</h2> |
| <ol id="list-how-it-works"> |
| <li id="how-it-works-item1" class="first"> |
| <strong>Propose a project <span>for approval by a participating open source organization</span></strong> |
| </li> |
| <li id="how-it-works-item2" class="second"> |
| <strong>Code the summer away</strong> |
| </li> |
| <li id="how-it-works-item3" class="third"> |
| <strong>Achieve Ultimate Glory <span>(and get a nice paycheck)</span></strong> |
| </li> |
| </ol> |
| <div id="block-how-it-works-description" class="description"> |
| <p>{{ program.description|safe }}</p> |
| </div> |
| </div> |
| <!-- .home-block-1 --> |
| |
| <div id="apply-students" class="content_column_1"> |
| <!-- begin apply block --> |
| {{ apply.render }} |
| <!-- end apply block --> |
| |
| <!-- begin featured project block --> |
| {{ featured_project.render }} |
| <!-- end featured project block --> |
| </div> |
| <!-- .content_column_1 --> |
| |
| <div class="content_column_2"> |
| <!-- begin block --> |
| <div id="program-map" class="block block-project-timeline"> |
| {{ timeline.render }} |
| </div> |
| <!-- end block --> |
| <!-- begin block --> |
| {{ connect_with_us.render }} |
| <!-- end block --> |
| <!-- begin block --> |
| {% if program.feed_url %} |
| <div id="blog-feed" class="block block-blog-feed"></div> |
| {% endif %} |
| <!-- end block --> |
| </div> |
| {% endblock page_content %} |
| |
| {% block dependencies %} |
| [ |
| {% if program.feed_url %} |
| dep.melange.blog, |
| null, |
| function () { |
| function initialize() { |
| var blog = new BlogPreview(document.getElementById("blog-feed")); |
| blog.show("{{ program.feed_url|safe }}", 5, "Blog Feed"); |
| } |
| |
| jQuery( |
| function () { |
| google.load("feeds","1", {callback:initialize}); |
| } |
| ); |
| } |
| {% endif %} |
| ] |
| {% endblock dependencies %} |