hexo-theme-amane/layout/common/scripts.ejs

11 lines
416 B
Plaintext

<%- js(cdn('jquery', '3.3.1', 'jquery.min.js')) %>
<%- js(cdn('moment.js', '2.22.2', 'moment-with-locales.min.js')) %>
<script>moment.locale("<%= get_config('language', 'en') %>");</script>
<% if (has_config('plugins')) { %>
<% for (let plugin in get_config('plugins')) { %>
<%- partial('plugin/' + plugin, { head: false, plugin: get_config('plugins')[plugin] }) %>
<% } %>
<% } %>
<%- js('js/main') %>