Skip to content

Commit d9a2e37

Browse files
jyn514Joshua Nelson
authored andcommitted
Add crappy header bar
1 parent 3eef305 commit d9a2e37

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

templates/about-base.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{% extends "base.html" %}
2+
{% block header %}
3+
<ul class="pure-menu-list">
4+
<li><a href="/about">About</a></li>
5+
<li><a href="/about/badges">Badges</a></li>
6+
<li><a href="/about/builds">Builds</a></li>
7+
<li><a href="/about/metadata">Metadata</a></li>
8+
<li><a href="/about/redirections">Redirections</a></li>
9+
</ul>
10+
{% endblock %}

templates/core/about/badges.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base.html" -%}
1+
{% extends "about-base.html" -%}
22

33
{%- block title -%} Badges {%- endblock title -%}
44

templates/core/about/builds.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base.html" -%}
1+
{% extends "about-base.html" -%}
22

33
{%- block title -%} Builds {%- endblock title -%}
44

templates/core/about/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base.html" -%}
1+
{% extends "about-base.html" -%}
22

33
{%- block title -%} About Docs.rs {%- endblock title -%}
44

templates/core/about/metadata.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base.html" -%}
1+
{% extends "about-base.html" -%}
22

33
{%- block title -%} Metadata {%- endblock title -%}
44

templates/core/about/redirections.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base.html" -%}
1+
{% extends "about-base.html" -%}
22

33
{%- block title -%} Redirections {%- endblock title -%}
44

0 commit comments

Comments
 (0)