summaryrefslogtreecommitdiff
path: root/_layouts/default.html
diff options
context:
space:
mode:
authorCameron McEfee <cameron@github.com>2011-06-09 17:34:32 -0700
committerCameron McEfee <cameron@github.com>2011-06-09 17:34:32 -0700
commit425a9aeee79771b659c3ab373c6429fda1ae88af (patch)
tree23375a5e3d940ba3d559aea6f6ff27c3b3642c9c /_layouts/default.html
parent3eb4726dcc5596ab6effae3801d87b71b69d4486 (diff)
add status widget
Diffstat (limited to '_layouts/default.html')
-rw-r--r--_layouts/default.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 02d716f..84650bb 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -51,7 +51,11 @@ sidebar_cats:
<ul>
{% for cat in (page.sidebar_cats) %}
<li class="js-topic">
- <h3><a href="#">{{ cat | replace:'_',' ' | capitalize }}</a></h3>
+ {% if cat == 'github_resources' %}
+ <h3><a href="#">GitHub Resources</a></h3>
+ {% else %}
+ <h3><a href="#">{{ cat | replace:'_',' ' | capitalize }}</a></h3>
+ {% endif %}
<ul class="js-guides">
{% for post in site.posts reversed %}{% if post.categories contains cat %}
{% if page.title == post.title %}
@@ -68,6 +72,13 @@ sidebar_cats:
<div class="sidebar-module">
<p>This website is <a href="http://github.com/github/help.github.com#readme" target="_blank">open source</a>. Please help us by forking the project and adding to it.</p>
</div>
+ <div class="sidebar-module">
+ <div class="status-box loading">
+ <h4>Site Status:</h4>
+ <a href="http://status.github.com">All Systems Operational <img class="status-anim" src="/images/load-anim.gif" height="10" width="43" alt="loading"/></a>
+ </div>
+ </div> <!-- /sidebar-module -->
+
</div><!-- /sidebar-shell -->
</div><!-- #wrapper -->