2012-09-20 10:30:55 +10:00
< template name = "body" >
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 >
2012-10-17 17:25:10 +09:00
{{> mobile_nav}}
2013-01-16 07:25:39 +09:00
< div class = "content-wrapper template-{{pageName}}" >
2012-10-17 17:25:10 +09:00
{{> nav}}
{{> error}}
2012-11-21 14:28:18 +11:00
{{{renderPage}}}
2012-10-17 17:25:10 +09:00
{{> notifications}}
{{> footer}}
< div class = "overlay hidden" > < / div >
< / div >
2013-02-28 09:19:08 +09:00
{{{extraCode}}}
2012-09-20 10:30:55 +10:00
< / template >