-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpage_developer.html
More file actions
22 lines (18 loc) · 1.6 KB
/
Copy pathpage_developer.html
File metadata and controls
22 lines (18 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "page.html" %}
{% set HAS_SIDEBAR = "left" %}
{% set BANNER_HEIGHT = 75 %}
{% set BANNER = "#006666" %}
{% block banner_title %}<h1>{{page.title}}</h1>{% endblock %}
{% block sidebar %}
<ul class="side-nav">
<li {% if page.slug == "developer/get-started" %}class="active"{% endif %}><a href="/developer/get-started">Get Started</a></li>
<li {% if page.slug == "developer/architecture" %}class="active"{% endif %}><a href="/developer/architecture">Architecture</a></li>
<li {% if page.slug == "developer/backend" %}class="active"{% endif %}><a href="/developer/backend">Backend</a></li>
<li {% if page.slug == "developer/frontend" %}class="active"{% endif %}><a href="/developer/frontend">Frontend</a></li>
<li {% if page.slug == "developer/operations" %}class="active"{% endif %}><a href="/developer/operations">Operations</a></li>
<li {% if page.slug == "developer/result-quality" %}class="active"{% endif %}><a href="/developer/result-quality">Result Quality</a></li>
<li {% if page.slug == "developer/tutorials/first-frontend-patch" %}class="active"{% endif %}><a href="/developer/tutorials/first-frontend-patch">Tutorial: 1st Frontend patch</a></li>
<li {% if page.slug == "developer/tutorials/analyzing-the-web-with-spark-on-ec2" %}class="active"{% endif %}><a href="/developer/tutorials/analyzing-the-web-with-spark-on-ec2">Tutorial: Analyzing the web with Spark</a></li>
<li {% if page.slug == "developer/tutorials/running-pagerank-on-the-web" %}class="active"{% endif %}><a href="/developer/tutorials/running-pagerank-on-the-web">Tutorial: Running PageRank on the web</a></li>
</ul>
{% endblock %}