Vulcan/client/body.html
2013-02-28 09:19:08 +09:00

39 lines
No EOL
1.1 KiB
HTML

<template name="body">
<style>
{{#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}}
</style>
{{> mobile_nav}}
<div class="content-wrapper template-{{pageName}}">
{{> nav}}
{{> error}}
{{{renderPage}}}
{{> notifications}}
{{> footer}}
<div class="overlay hidden"></div>
</div>
{{{extraCode}}}
</template>