NEW: add pangu.js support

This commit is contained in:
FarseaSH 2022-03-20 12:58:34 +08:00
parent 869c954f90
commit 07d45aa322
2 changed files with 18 additions and 2 deletions

View file

@ -13,3 +13,14 @@
<!-- fancybox -->
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.umd.js"></script>
<!-- pangu.js -->
<script>
pangu.spacingElementByClassName('moment-note');
pangu.spacingElementByClassName('context');
document.addEventListener('DOMContentLoaded', () => {
// listen to any DOM change and automatically perform spacing via MutationObserver()
pangu.autoSpacingPage();
});
</script>

View file

@ -7,7 +7,7 @@
<!-- todo change jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- 点赞 -->
<!-- like button -->
<link href="https://cdn.bootcss.com/font-awesome/5.8.2/css/all.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/jqueryui/1.12.1/jquery-ui.min.js"></script>
@ -41,5 +41,10 @@
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.6/build/grids-min.css">
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.6/build/grids-responsive-min.css">
<!-- pangu support (js in the end before the body closing tag) -->
<!-- todo make it optional -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pangu/4.0.7/pangu.min.js"></script>
<!-- website title -->
<title>{{ .Site.Params.title }}</title>
<title>{{ .Site.Params.title }}</title>