[opt] theme info
This commit is contained in:
parent
c0dd2292f9
commit
2b5183e014
|
@ -213,7 +213,7 @@ footer:
|
|||
# - '[关于本站](/)'
|
||||
# - '[GitHub](/)'
|
||||
content: | # 支持 Markdown 格式
|
||||
本站由 [@anonymity](/) 使用 [Stellar](https://github.com/xaoxuu/hexo-theme-stellar) 主题创建。
|
||||
本站由 [${author}](/) 使用 [${theme.name} ${theme.version}](${theme.tree}) 主题创建。
|
||||
本博客所有文章除特别声明外,均采用 [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) 许可协议,转载请注明出处。
|
||||
# 主题用户越多,开发者维护和更新的积极性就越高,如果您喜欢本主题,请在适当的位置显示主题信息和仓库链接以表支持。
|
||||
|
||||
|
|
|
@ -94,7 +94,7 @@ function custom_inject() {
|
|||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="hexo-theme" content="<%- stellar_info('tree') %>" version="<%- stellar_info('version') %>">
|
||||
<meta name="hexo-theme" content="<%- stellar_info('tree') %>" theme-name="<%- stellar_info('name') %>" theme-version="<%- stellar_info('version') %>">
|
||||
<%- generate_robots() %>
|
||||
<%- meta_generator() %>
|
||||
<meta http-equiv='x-dns-prefetch-control' content='on' />
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<%
|
||||
const content = theme.footer.content;
|
||||
const content = theme.footer.content?.replace('${author}', config.author)?.replace('${theme.name}', stellar_info('name'))?.replace('${theme.version}', stellar_info('version'))?.replace('${theme.tree}', stellar_info('tree'))
|
||||
function layoutDiv() {
|
||||
var el = '';
|
||||
el += '<footer class="page-footer reveal fs12">';
|
||||
|
|
Loading…
Reference in New Issue