Skip to content

Commit

Permalink
Merge pull request #1814 from metacpan/tsibley/navigation
Browse files Browse the repository at this point in the history
Tweaks to navigation
  • Loading branch information
oalders committed Nov 20, 2016
2 parents fa01598 + 70d4b23 commit f86565f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion root/about/faq.html
Expand Up @@ -64,7 +64,7 @@

## Where can I find the API docs?

The API docs can be found [in the API repository](https://github.com/metacpan/metacpan-api/blob/master/docs/API-docs.md).
The API docs can be found by visiting [fastapi.metacpan.org](https://fastapi.metacpan.org).
API requests need to be sent to fastapi.metacpan.org.

## How can I try the API?
Expand Down
2 changes: 1 addition & 1 deletion root/static/less/bootstrap/mixins.less
Expand Up @@ -23,7 +23,7 @@
display: table; // 2
}
&:after {
clear: none;
clear: both;
}
}

Expand Down
16 changes: 14 additions & 2 deletions root/wrapper.html
Expand Up @@ -9,6 +9,12 @@
icon = "history",
},
{
title = "About",
path = ["/about"],
class = 'hidden-xs',
icon = "info",
},
{
title = "FAQ",
path = ["/about/faq"],
class = 'hidden-xs',
Expand All @@ -24,14 +30,20 @@
title = "News",
path = ["/news"],
class = 'hidden-xs',
icon = "rss",
icon = "newspaper-o",
},
{
title = "Lab",
path = ["/lab"],
class = 'hidden-xs',
icon = "rocket",
},
{
title = "API",
path = ["https://fastapi.metacpan.org"],
class = 'hidden-xs',
icon = "database",
},
] -%>
<!DOCTYPE HTML>
<html>
Expand Down Expand Up @@ -223,7 +235,7 @@
<div class="row footer">
<div class="hidden-xs hidden-sm col-md-2">&nbsp;</div>
<div class="col-xs-2 col-sm-1 col-md-1" style="text-align: center">
<a href="https://github.com/metacpan/metacpan-api/blob/master/docs/API-docs.md">API</a>
<a href="https://fastapi.metacpan.org">API</a>
</div>
<div class="col-xs-5 col-sm-3 col-md-2" style="text-align: center">
<a href="/about">About MetaCPAN</a>
Expand Down

0 comments on commit f86565f

Please sign in to comment.