We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee496eb commit bea000bCopy full SHA for bea000b
templates/layout.jade
@@ -3,7 +3,10 @@ html.no-js
3
head
4
meta(charset='utf-8')
5
meta(http-equiv='X-UA-Compatible', content='IE=edge')
6
- title= name || 'badgeboard'
+ if (typeof(title) !== 'undefined')
7
+ title= title
8
+ else
9
+ title= name || 'badgeboard'
10
meta(name='description', content=description || '')
11
meta(name='keywords', content=keywords || '')
12
meta(name='viewport', content='width=device-width, initial-scale=1')
0 commit comments