Skip to content

Commit

Permalink
Use the unicode symbols when possible.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Dec 23, 2016
1 parent 581a10b commit 8b331a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion routes/index.js
Expand Up @@ -20,7 +20,7 @@ function appendLocals(req, res) {
res.locals.theme = req.query.theme;

res.locals.displayTitle = function (pageTitle) {
return pageTitle + ' · ' + TITLE;
return pageTitle + ' · ' + TITLE;
};

res.locals.bodyClass = function (pageTitle) {
Expand Down
3 changes: 2 additions & 1 deletion views/_partials/header.pug
Expand Up @@ -27,7 +27,8 @@
li(class=(title === 'Integrations' ? 'active' : ''))
a(href='/integrations/' + themeQs) Integrations
li.dropdown
a.dropdown-toggle(href='#', data-toggle='dropdown') Resources 
a.dropdown-toggle(href='#', data-toggle='dropdown') Resources
|
span.caret
ul.dropdown-menu.dropdown-menu-right(role='menu')
li
Expand Down
2 changes: 1 addition & 1 deletion views/layout.pug
Expand Up @@ -18,7 +18,7 @@ html(lang='en', prefix='og: http://ogp.me/ns#', itemscope, itemtype='http://sche

link(rel='dns-prefetch', href='//fonts.googleapis.com')

link(rel='apple-touch-icon', sizes='180x180', href=helpers.buster('/assets/img/favicons/apple-touch-icon.png'))
link(rel='apple-touch-icon', href=helpers.buster('/assets/img/favicons/apple-touch-icon.png'), sizes='180x180')
link(rel='icon', type='image/png', href=helpers.buster('/assets/img/favicons/favicon-32x32.png'), sizes='32x32')
link(rel='icon', type='image/png', href=helpers.buster('/assets/img/favicons/favicon-16x16.png'), sizes='16x16')
link(rel='manifest', href='/assets/img/favicons/manifest.json')
Expand Down

0 comments on commit 8b331a1

Please sign in to comment.