From 3365711f40dd64cf865f2bf7c67410e1b0558b38 Mon Sep 17 00:00:00 2001 From: Gemma Leigh Date: Thu, 28 Jan 2016 14:18:33 +0000 Subject: [PATCH] Fix the breadcrumb for Icons and images MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change the section to icons-images, so the breadcrumb in the example page links back to the “Icons and images” section. --- routes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes.js b/routes.js index 3555988e4..ce9392397 100755 --- a/routes.js +++ b/routes.js @@ -75,8 +75,8 @@ module.exports = { // Example page: Icons app.get('/icons-images/example-icons', function (req, res) { - var section = "Icons and images"; - var section_name = "Icons"; + var section = "icons-images"; + var section_name = "Icons and images"; var page_name = "Example: Icons"; res.render('examples/example_icons', {'assetPath' : assetPath, 'section': section, 'section_name' : section_name, 'page_name' : page_name }); });