2013-10-06 08:42:10 +09:00
< template name = "layout" >
2013-02-14 10:17:26 +09:00
< style >
2013-02-16 13:05:32 +09:00
{{#if backgroundColor}}
body{
background-color: {{backgroundColor}};
}
{{/if}}
{{#if buttonColor}}
input[type="submit"], button, .button, .auth-buttons #login-buttons #login-buttons-password, .btn, .error{
background-color: {{buttonColor}};
}
a:hover, .post-content .post-heading .post-title:hover, .post-content .post-upvote .upvote-link i, .comment-actions a i, .comment-actions.upvoted .upvote i, .comment-actions.downvoted .downvote i{
color: {{buttonColor}};
}
{{/if}}
{{#if secondaryColor}}
.post-content .post-upvote .upvote-link.voted i.icon-check{
color: {{secondaryColor}};
}
{{/if}}
{{#if headerColor}}
.header{
background-color: {{headerColor}};
}
{{/if}}
2013-02-14 10:17:26 +09:00
< / style >
2013-10-06 08:42:10 +09:00
< div class = "outer-wrapper {{currentPage}}" >
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=mobile_nav}}
2013-10-06 08:42:10 +09:00
< div class = "content-wrapper template-{{pageName}}" >
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=nav}}
{{> UI.dynamic template=error}}
2014-04-30 16:58:11 -07:00
{{> yield}}
2014-07-05 11:42:28 +09:00
{{> UI.dynamic template=notifications}}
{{> UI.dynamic template=footer}}
2013-10-06 08:42:10 +09:00
< div class = "overlay hidden" > < / div >
< / div >
{{{extraCode}}}
2012-10-17 17:25:10 +09:00
< / div >
2012-09-20 10:30:55 +10:00
< / template >