nicenote/themes/material/layout/_partial/footer-left.ejs
2018-07-13 19:29:56 +08:00

101 lines
3.4 KiB
Plaintext
Executable File

<div class="mdl-mini-footer--left-section sns-list">
<!-- Twitter -->
<% if(theme.sns.twitter) { %>
<a href="<%= theme.sns.twitter %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-twitter">
<span class="visuallyhidden">Twitter</span>
</button><!--
--></a>
<% } %>
<!-- Facebook -->
<% if(theme.sns.facebook) { %>
<a href="<%= theme.sns.facebook %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-facebook">
<span class="visuallyhidden">Facebook</span>
</button><!--
--></a>
<% } %>
<!-- Google + -->
<% if(theme.sns.googleplus) { %>
<a href="<%= theme.sns.googleplus %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-gplus">
<span class="visuallyhidden">Google Plus</span>
</button><!--
--></a>
<% } %>
<!-- Weibo -->
<% if(theme.sns.weibo) { %>
<a href="<%= theme.sns.weibo %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-weibo">
<span class="visuallyhidden">Weibo</span>
</button><!--
--></a>
<% } %>
<!-- Instagram -->
<% if(theme.sns.instagram) { %>
<a href="<%= theme.sns.instagram %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-instagram">
<span class="visuallyhidden">Instagram</span>
</button><!--
--></a>
<% } %>
<!-- Tumblr -->
<% if(theme.sns.tumblr) { %>
<a href="<%= theme.sns.tumblr %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-tumblr">
<span class="visuallyhidden">Tumblr</span>
</button><!--
--></a>
<% } %>
<!-- Github -->
<% if(theme.sns.github) { %>
<a href="<%= theme.sns.github %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-github">
<span class="visuallyhidden">Github</span>
</button><!--
--></a>
<% } %>
<!-- LinkedIn -->
<% if(theme.sns.linkedin) { %>
<a href="<%= theme.sns.linkedin %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-linkedin">
<span class="visuallyhidden">LinkedIn</span>
</button><!--
--></a>
<% } %>
<!-- Zhihu -->
<% if(theme.sns.zhihu) { %>
<a href="<%= theme.sns.zhihu %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-zhihu">
<span class="visuallyhidden">Zhihu</span>
</button><!--
--></a>
<% } %>
<!-- Bilibili -->
<% if(theme.sns.bilibili) { %>
<a href="<%= theme.sns.bilibili %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-bilibili">
<span class="visuallyhidden">Bilibili</span>
</button><!--
--></a>
<% } %>
<!-- Telegram -->
<% if(theme.sns.telegram) { %>
<a href="<%= theme.sns.telegram %>" target="_blank">
<button class="mdl-mini-footer--social-btn social-btn footer-sns-telegram">
<span class="visuallyhidden">Telegram</span>
</button><!--
--></a>
<% } %>
</div>