mirror of https://github.com/halo-dev/halo
🎨 Anatole主题支持博客标题设置大小写
parent
601255a13f
commit
c0d334f3ce
|
@ -24,6 +24,11 @@
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
}
|
}
|
||||||
</#if>
|
</#if>
|
||||||
|
<#if options.anatole_style_blog_title_lower?default("true") == "false">
|
||||||
|
.sidebar .logo-title .title h3 {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
</#if>
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 6px;
|
width: 6px;
|
||||||
height: 6px;
|
height: 6px;
|
||||||
|
@ -73,4 +78,4 @@
|
||||||
${options.statistics_code?if_exists}
|
${options.statistics_code?if_exists}
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
</#macro>
|
</#macro>
|
||||||
|
|
|
@ -149,6 +149,17 @@
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
</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">
|
<div class="form-group">
|
||||||
<label for="anatoleStyleAvatarCircle" class="col-sm-4 control-label">圆形头像:</label>
|
<label for="anatoleStyleAvatarCircle" class="col-sm-4 control-label">圆形头像:</label>
|
||||||
<div class="col-sm-8">
|
<div class="col-sm-8">
|
||||||
|
@ -252,4 +263,4 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue