Empty page for Developers. Fix responsive menu.

This commit is contained in:
Gustavo Cortez 2014-01-31 13:21:32 -03:00
parent e60129b142
commit 1eff18b9b9
4 changed files with 24 additions and 7 deletions

View File

@ -55,15 +55,16 @@ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
display: block; display: block;
} }
@media (min-width: 768px) { .navbar-form {
.navbar-form {
width: 30%; width: 30%;
}
} }
@media (max-width: 768px) { @media (max-width: 991px) {
.status { .status {
margin: 0 14px !important; margin: 0;
}
.navbar-form {
width: 20%;
} }
} }

View File

@ -35,7 +35,11 @@ angular.module('insight').config(function($routeProvider) {
templateUrl: '/views/status.html', templateUrl: '/views/status.html',
title: 'Status' title: 'Status'
}). }).
otherwise({ when('/developers', {
templateUrl: '/views/developers.html',
title: 'Developers'
})
.otherwise({
templateUrl: '/views/404.html', templateUrl: '/views/404.html',
title: 'Error' title: 'Error'
}); });

View File

@ -12,6 +12,10 @@ angular.module('insight.system').controller('HeaderController',
{ {
'title': 'Status', 'title': 'Status',
'link': 'status' 'link': 'status'
},
{
'title': 'Developers',
'link': 'developers'
} }
]; ];

View File

@ -0,0 +1,8 @@
<section>
<div class="page-header">
<h1>
Bitcoin Developer API's <small>Tools for developers to get data about the Insight</small>
</h1>
</div>
</section>