hexo-theme-amane/layout/plugin/baidu-analytics.ejs

11 lines
361 B
Plaintext
Raw Normal View History

2018-10-16 05:28:42 +00:00
<% if (head && get_config_from_obj(plugin, 'tracking_id')) { %>
2016-02-02 16:19:44 +00:00
<script>
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
2018-10-16 05:28:42 +00:00
hm.src = "//hm.baidu.com/hm.js?<%= get_config_from_obj(plugin, 'tracking_id') %>";
2016-02-02 16:19:44 +00:00
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
2018-10-16 05:28:42 +00:00
<% } %>