🎨 Anatole主题支持博客标题设置大小写

pull/33/merge
ruibaby 2018-08-05 21:23:58 +08:00
parent 601255a13f
commit c0d334f3ce
2 changed files with 18 additions and 2 deletions

View File

@ -24,6 +24,11 @@
text-transform: none;
}
</#if>
<#if options.anatole_style_blog_title_lower?default("true") == "false">
.sidebar .logo-title .title h3 {
text-transform: none;
}
</#if>
::-webkit-scrollbar {
width: 6px;
height: 6px;
@ -73,4 +78,4 @@
${options.statistics_code?if_exists}
</body>
</html>
</#macro>
</#macro>

View File

@ -149,6 +149,17 @@
</label>
</div>
</div>
<div class="form-group">
<label for="anatoleStyleBlogTitleLower" class="col-sm-4 control-label">博客标题大写:</label>
<div class="col-sm-8">
<label class="radio-inline">
<input type="radio" name="anatole_style_blog_title_lower" id="anatoleStyleBlogTitleLower" value="true" ${((options.anatole_style_blog_title_lower?default('true'))=='true')?string('checked','')}> 开启
</label>
<label class="radio-inline">
<input type="radio" name="anatole_style_blog_title_lower" id="anatoleStyleBlogTitleLower" value="false" ${((options.anatole_style_blog_title_lower?if_exists)=='false')?string('checked','')}> 关闭
</label>
</div>
</div>
<div class="form-group">
<label for="anatoleStyleAvatarCircle" class="col-sm-4 control-label">圆形头像:</label>
<div class="col-sm-8">
@ -252,4 +263,4 @@
});
}
</script>
</html>
</html>