NEW: add pangu.js support
This commit is contained in:
parent
869c954f90
commit
07d45aa322
2 changed files with 18 additions and 2 deletions
|
@ -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>
|
|
@ -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>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue