Vulcan/client/body.html

39 lines
1.1 KiB
HTML
Raw Normal View History

2012-09-20 10:30:55 +10:00
<template name="body">
2013-02-14 10:17:26 +09:00
<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}}
2013-02-14 10:17:26 +09:00
</style>
2012-10-17 17:25:10 +09:00
{{> mobile_nav}}
<div class="content-wrapper template-{{pageName}}">
2012-10-17 17:25:10 +09:00
{{> nav}}
{{> error}}
{{{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>