diff --git a/controllers/api.js b/controllers/api.js index 65642c63a9..2374c88e7c 100644 --- a/controllers/api.js +++ b/controllers/api.js @@ -24,7 +24,7 @@ var clockwork = require('clockwork')({key: secrets.clockwork.apiKey}); exports.getApi = function(req, res) { res.render('api/index', { - title: 'API Browser' + title: 'API Examples' }); }; diff --git a/views/api/index.jade b/views/api/index.jade index b82ce1c104..c32ab179fa 100644 --- a/views/api/index.jade +++ b/views/api/index.jade @@ -1,7 +1,7 @@ extends ../layout block content - h2 API Browser + h2 API Examples ol li diff --git a/views/partials/navigation.jade b/views/partials/navigation.jade index 8aa337e15c..512733fb5e 100644 --- a/views/partials/navigation.jade +++ b/views/partials/navigation.jade @@ -11,8 +11,8 @@ ul.nav.navbar-nav li(class=title=='Home'?'active':undefined) a(href='/') Home - li(class=title=='API Browser'?'active':undefined) - a(href='/api') API Browser + li(class=title=='API Examples'?'active':undefined) + a(href='/api') API Examples li(class=title=='Contact'?'active':undefined) a(href='/contact') Contact ul.nav.navbar-nav.navbar-right