Blog/themes/freemind/layout/_partial/after_footer.ejs

32 lines
1 KiB
Text
Raw Normal View History

2022-03-16 15:24:24 +01:00
<a id="gotop" href="#">
<span>⬆TOP</span>
</a>
<script src="<%- url_for('./js/jquery.imagesloaded.min.js') %>"></script>
<script src="<%- url_for('./js/gallery.js') %>"></script>
<script src="<%- url_for('./js/bootstrap.min.js') %>"></script>
<script src="<%- url_for('./js/main.js') %>"></script>
<script src="<%- url_for('./js/search.js') %>"></script>
<% if (theme.fancybox){ %>
<link rel="stylesheet" href="<%- url_for('./fancybox/jquery.fancybox.css') %>" media="screen" type="text/css">
<script src="<%- url_for('./fancybox/jquery.fancybox.pack.js') %>"></script>
<script type="text/javascript">
(function($){
$('.fancybox').fancybox();
})(jQuery);
</script>
<% } %>
<% if (config.search) { %>
<!-- <script type="text/javascript">
var search_path = "<%= config.search.path %>";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "<%= config.root %>" + search_path;
searchFunc(path, 'local-search-input', 'local-search-result');
</script> -->
<% } %>