mirror of
https://github.com/yv1ing/MollyBlog.git
synced 2025-09-16 14:53:45 +08:00
new: Use CDN to accelerate all static resources
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
|
||||
@font-face {
|
||||
font-family: 'fusion-pixel';
|
||||
src: url('../../assets/css/webfonts/fusion-pixel-10px-monospaced-zh_hans.woff2') format('woff2');
|
||||
src: url('../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fusion-pixel-10px-monospaced-zh_hans.woff2') format('woff2');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-family: 'fontello';
|
||||
src: url('../../../assets/css/webfonts/fontello.eot?77128880');
|
||||
src: url('../../../assets/css/webfonts/fontello.eot?77128880#iefix') format('embedded-opentype'),
|
||||
url('../../../assets/css/webfonts/fontello.woff?77128880') format('woff'),
|
||||
url('../../../assets/css/webfonts/fontello.ttf?77128880') format('truetype'),
|
||||
url('../../../assets/css/webfonts/fontello.svg?77128880#fontello') format('svg');
|
||||
src: url('../../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fontello.eot?77128880');
|
||||
src: url('../../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fontello.eot?77128880#iefix') format('embedded-opentype'),
|
||||
url('../../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fontello.woff?77128880') format('woff'),
|
||||
url('../../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fontello.ttf?77128880') format('truetype'),
|
||||
url('../../http://molly-blog.cdn.yvling.cn/assets/css/webfonts/fontello.svg?77128880#fontello') format('svg');
|
||||
}
|
||||
|
||||
.meplayer-container {
|
||||
|
||||
@@ -40,7 +40,7 @@ function setTheme() {
|
||||
|
||||
const logo = document.querySelector(".main-logo-img")
|
||||
if (logo !== null) {
|
||||
logo.style.setProperty("background-image", `url(../assets/img/logo-${theme}-theme.png)`);
|
||||
logo.style.setProperty("background-image", `url(http://molly-blog.cdn.yvling.cn/assets/img/logo-${theme}-theme.png)`);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,7 +57,7 @@ function replaceCssFile() {
|
||||
const links = document.querySelectorAll('link[rel="stylesheet"]');
|
||||
for (const link of links) {
|
||||
if (link.href.includes(oldHref)) {
|
||||
link.href = "../assets/css/lib/" + newHref;
|
||||
link.href = "http://molly-blog.cdn.yvling.cn/assets/css/lib/" + newHref;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -131,7 +131,7 @@
|
||||
|
||||
var musicConf = options.music, target = selector.$(options.target) || document.querySelector('.meplayer'),
|
||||
theme = options.theme || _constants.THEME_DEFAULT, hasLrc = !!musicConf.lrc,
|
||||
coverSrc = musicConf.cover || '../../../assets/img/music.png', loop = musicConf.loop || false,
|
||||
coverSrc = musicConf.cover || '../../http://molly-blog.cdn.yvling.cn/assets/img/music.png', loop = musicConf.loop || false,
|
||||
autoplay = options.autoplay,
|
||||
currentThemeClass = theme === _constants.THEME_DEFAULT ? 'meplayer-container' : 'meplayer-container-mini',
|
||||
containerClass = currentThemeClass + ' ' + (hasLrc ? 'meplayer-haslrc' : '') + ' meplayer-isloading';
|
||||
|
||||
@@ -5,23 +5,18 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }} | {{ .about.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/about.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/about.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="../assets/js/lib/typed.umd.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/typed.umd.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -82,7 +77,7 @@
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,21 +5,16 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }} | {{ .history_post.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/archive.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/archive.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -121,13 +116,15 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="../assets/js/archive.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/archive.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,21 +5,16 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/category.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/category.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -73,7 +68,7 @@
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@@ -112,12 +107,14 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,23 +5,18 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }} | {{ .friend.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/friend.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/friend.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="../assets/js/lib/typed.umd.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/typed.umd.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -88,12 +83,14 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script>
|
||||
function goto(path) {
|
||||
window.location.href = path;
|
||||
|
||||
@@ -5,22 +5,17 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/index.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/index.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="../assets/js/lib/typed.umd.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/typed.umd.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -124,13 +119,15 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="../assets/js/index.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/index.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,23 +5,18 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/lib/meplayer.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/music.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/meplayer.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/music.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="../assets/js/lib/meplayer.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/meplayer.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -57,7 +52,8 @@
|
||||
<div class="row row-cols-1 row-cols-md-2 row-cols-lg-3 row-cols-xl-4">
|
||||
{{ range $i, $v := .music.list }}
|
||||
<div class="col">
|
||||
<div class="music-item" onclick="play('{{ $v.Name }}', '{{ $v.Singer }}', '{{ $v.Cover }}', '{{ $v.MusicUrl }}', '{{ $v.LyricUrl }}')">
|
||||
<div class="music-item"
|
||||
onclick="play('{{ $v.Name }}', '{{ $v.Singer }}', '{{ $v.Cover }}', '{{ $v.MusicUrl }}', '{{ $v.LyricUrl }}')">
|
||||
<img class="music-cover" src="{{ $v.Cover }}">
|
||||
<div class="music-info-wrap">
|
||||
<div class="music-name">
|
||||
@@ -93,8 +89,8 @@
|
||||
<div class="music-player" id="music-player"></div>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="../assets/js/music.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/music.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,22 +5,17 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/post.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/github-dark.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/post.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -142,8 +137,8 @@
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="../assets/js/post.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/post.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,21 +5,16 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/search.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/search.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -119,13 +114,15 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="../assets/js/search.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/search.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
@@ -5,22 +5,17 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ .site_info.title }}</title>
|
||||
<link rel="icon" type="image/x-icon" href="../assets/img/logo.png"/>
|
||||
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/fontawesome.all.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
|
||||
<!-- <link rel="stylesheet" href="../assets/css/lib/bootstrap.min.css">-->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="../assets/css/global.css">
|
||||
<link rel="stylesheet" href="../assets/css/tag.css">
|
||||
<link rel="icon" type="image/x-icon" href="http://molly-blog.cdn.yvling.cn/assets/img/logo.png"/>
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/fontawesome.all.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/lib/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/global.css">
|
||||
<link rel="stylesheet" href="http://molly-blog.cdn.yvling.cn/assets/css/tag.css">
|
||||
|
||||
<!-- <script src="../assets/js/lib/jquery.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/bootstrap.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.0.1/js/bootstrap.min.js"></script>
|
||||
<!-- <script src="../assets/js/lib/fontawesome.all.min.js"></script>-->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/js/fontawesome.min.js"></script>
|
||||
<script src="../assets/js/lib/wordcloud2.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/jquery.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/bootstrap.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/fontawesome.all.min.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/lib/wordcloud2.js"></script>
|
||||
|
||||
<!-- statistics script -->
|
||||
{{ if .statistics.enable }}
|
||||
@@ -103,16 +98,18 @@
|
||||
|
||||
<!-- theme -->
|
||||
<div class="theme-wrap" onclick="changeTheme()">
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503" fill="#6d6faa" p-id="6404"></path>
|
||||
<svg t="1735089313984" class="icon theme-btn" viewBox="0 0 1024 1024" version="1.1"
|
||||
xmlns="http://www.w3.org/2000/svg" p-id="6403" width="36" height="36">
|
||||
<path d="M326.475761 829.999912l-36.600808 9.805927c-10.107989 2.709493-16.101899 13.097392-13.396433 23.201354 2.709493 10.107989 13.097392 16.101899 23.205381 13.395426l36.597787-9.80492c10.107989-2.709493 16.105926-13.097392 13.395426-23.205381C346.971649 833.288356 336.579722 827.290419 326.475761 829.999912L326.475761 829.999912zM371.675256 940.076204l-26.79186 26.795887c-7.402524 7.398496-7.402524 19.39437 0 26.787832 7.393462 7.402524 19.393363 7.402524 26.79186 0l26.79186-26.787832c7.398496-7.402524 7.398496-19.39437 0-26.795887C391.069627 932.681735 379.073752 932.681735 371.675256 940.076204L371.675256 940.076204zM734.141157 844.576399l-38.087958-9.83714c-10.512752-2.717548-21.325551 3.300527-24.144793 13.439729-2.816221 10.14323 3.425379 20.566369 13.942158 23.287945l38.08393 9.840161c10.517786 2.718555 21.329579-3.303547 24.149827-13.442749C750.900543 857.721114 744.657936 847.297974 734.141157 844.576399L734.141157 844.576399zM648.32142 945.201183c-7.701565-7.422661-20.184765-7.422661-27.882302 0-7.700558 7.425682-7.700558 19.460824 0 26.886506l27.882302 26.882478c7.69653 7.425682 20.180737 7.425682 27.881295 0 7.697537-7.425682 7.697537-19.456796 0-26.882478L648.32142 945.201183 648.32142 945.201183zM521.348807 948.22482c-10.461401 0-18.941278 8.479877-18.941278 18.942285l0 37.891618c0 10.461401 8.479877 18.941278 18.941278 18.941278 10.462408 0 18.946312-8.479877 18.946312-18.941278L540.29512 967.167104C540.29512 956.704696 531.811215 948.22482 521.348807 948.22482L521.348807 948.22482zM540.349491 492.068463c0.008055-0.200368 0.063433-0.380598 0.063433-0.581972L540.412924 33.50669c0-9.423316-8.479877-17.061448-18.942285-17.061448-10.461401 0-18.945305 7.638132-18.945305 17.061448l0 457.300163c-154.480359 5.447178-283.226073 143.101697-283.226073 305.561517l0 18.005894 151.931965 0c11.393765 64.408601 70.091387 113.669819 140.764747 113.669819 70.678394 0 129.379037-49.261217 140.773809-113.669819l151.930958 0 0-18.005894C804.70074 640.566995 686.30265 507.517909 540.349491 492.068463L540.349491 492.068463zM511.995973 892.037329c-50.606399 0-93.024913-33.238862-104.042108-77.663066l208.09227 0C605.029948 858.798467 562.611433 892.037329 511.995973 892.037329L511.995973 892.037329zM255.904095 778.366503c9.152467-138.251594 122.705489-251.815691 256.099932-251.815691 133.387395 0 246.93941 113.564097 256.091877 251.815691L255.904095 778.366503 255.904095 778.366503zM255.904095 778.366503"
|
||||
fill="#6d6faa" p-id="6404"></path>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<script src="../assets/js/global.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/global.js"></script>
|
||||
<script>
|
||||
const tagList = "{{ .tagged_post.tag_list }}";
|
||||
</script>
|
||||
<script src="../assets/js/tag.js"></script>
|
||||
<script src="http://molly-blog.cdn.yvling.cn/assets/js/tag.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user