blog-hexo/themes/hexo-theme-cosy/layout/postCopyright.ejs

24 lines
676 B
Plaintext
Raw Normal View History

2023-10-24 09:50:42 +08:00
<%- css("/css/ccbcde32.css")%>
<% if (theme.postCopyright.enable) { %>
<div class="copyright">
<a target="_blank" href="<%- page.permalink %>">
<span><%- __('text-post-link') %></span>
<span><%- page.permalink %></span>
</a>
<ul>
<li>
<span><%- __('text-author') %></span>
<p> <%- config.author %></p>
</li>
<li>
<span><%- __('text-pub-time') %></span>
<p><%- page.date.format("YYYY-MM-DD") %></p>
</li>
<li>
<span><%- __('text-license') %></span>
<p><a href="<%- theme.postCopyright.license_url %>"><%- theme.postCopyright.license %></a></p>
</li>
</ul>
</div>
<% } %>
<%- js("/js/31d6cfe0.js")%>