Provide more config options for nav and footer entries
This commit is contained in:
@@ -5,7 +5,7 @@ footer
|
||||
each item in nav.left_footer
|
||||
li
|
||||
if item.url
|
||||
a(href=item.url) !{item.text}
|
||||
a(href=item.url, class=item.class) !{item.text}
|
||||
else
|
||||
| !{item.text}
|
||||
|
||||
@@ -13,7 +13,7 @@ footer
|
||||
each item in nav.right_footer
|
||||
li
|
||||
if item.url
|
||||
a(href=item.url) !{item.text}
|
||||
a(href=item.url, class=item.class) !{item.text}
|
||||
else
|
||||
| !{item.text}
|
||||
|
||||
|
||||
@@ -21,13 +21,13 @@ nav.navbar.navbar-default
|
||||
else
|
||||
li
|
||||
if child.url
|
||||
a(href=child.url) !{child.text}
|
||||
a(href=child.url, class=child.class) !{child.text}
|
||||
else
|
||||
| !{child.text}
|
||||
else
|
||||
li(class=item.class)
|
||||
if item.url
|
||||
a(href=item.url) !{item.text}
|
||||
a(href=item.url, class=item.class) !{item.text}
|
||||
else
|
||||
| !{item.text}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user