hexo-theme-keep/layout/_partial/first-screen.ejs

46 lines
2.0 KiB
Plaintext
Raw Normal View History

<%
const { description: fs_description, hitokoto: fs_hitokoto } = theme.style.first_screen
const { description: c_description } = config
let final_description = fs_description || c_description || ''
final_description = final_description.split('||').map(desc => desc.trim())
if (final_description.length > 2) { final_description.length = 2 }
%>
<div class="first-screen-container flex-center fade-in-down-animation">
2020-11-19 11:58:54 +08:00
<div class="content flex-center">
<% if (final_description.length || fs_hitokoto.enable) { %>
<div class="description hitokoto">
<% for (const idx in final_description) { %>
<div><%= final_description[idx] %></div>
<% } %>
</div>
<% } %>
<% if (fs_hitokoto.enable) { %>
<script async <%= theme.pjax.enable === true ? 'data-pjax' : '' %>
src="https://v1.hitokoto.cn/?encode=js"
>
</script>
2022-04-27 14:30:06 +08:00
<% } %>
2020-11-15 22:06:32 +08:00
<% if (theme.social_contact.enable) { %>
<div class="s-icon-list">
2020-11-15 22:06:32 +08:00
<% for (const key in theme.social_contact.links) { %>
<% if(theme.social_contact.links[key]) { %>
<div class="tooltip s-icon-item <%= key %>"
data-content="<%= __(key) %>"
>
<% if(key === 'email') { %>
2020-12-12 20:25:56 +08:00
<a href="mailto:<%- theme.social_contact.links[key] %>">
<i class="fas fa-envelope"></i>
2020-11-15 22:06:32 +08:00
</a>
<% } else { %>
2020-12-12 20:25:56 +08:00
<a target="_blank" href="<%- theme.social_contact.links[key] %>">
<i class="fab fa-<%= key %>"></i>
2020-11-15 22:06:32 +08:00
</a>
<% } %>
</div>
2020-11-15 22:06:32 +08:00
<% } %>
<% } %>
</div>
2020-11-15 22:06:32 +08:00
<% } %>
</div>
2020-11-13 14:43:22 +08:00
</div>