Compare commits
4 Commits
9daa38f0e2
...
738680afad
| Author | SHA1 | Date | |
|---|---|---|---|
| 738680afad | |||
| 7948aaeb90 | |||
| ca58e5a20e | |||
| 716631937f |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -30,3 +30,6 @@ resources
|
|||||||
|
|
||||||
assets/jsconfig.json
|
assets/jsconfig.json
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# hugo build logs
|
||||||
|
*.log
|
||||||
@@ -55,23 +55,98 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 1024px) {
|
.links-section {
|
||||||
.article-list--compact.links {
|
margin-bottom: 10px;
|
||||||
display: grid;
|
}
|
||||||
grid-template-columns: 1fr 1fr;
|
|
||||||
background: none;
|
|
||||||
box-shadow: none;
|
|
||||||
|
|
||||||
article {
|
.links-section__header {
|
||||||
background: var(--card-background);
|
margin-bottom: 30px;
|
||||||
border: none;
|
padding-bottom: 16px;
|
||||||
box-shadow: var(--shadow-l2);
|
border-bottom: 2px solid var(--card-separator-color);
|
||||||
margin-bottom: 8px;
|
|
||||||
border-radius: 10px;
|
h1 {
|
||||||
&:nth-child(odd) {
|
margin: 0;
|
||||||
margin-right: 8px;
|
color: var(--card-text-color-main);
|
||||||
}
|
font-size: 2.2rem;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.links-grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 1fr;
|
||||||
|
gap: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-card {
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 132px;
|
||||||
|
overflow: hidden;
|
||||||
|
border-radius: var(--card-border-radius);
|
||||||
|
background: var(--card-background);
|
||||||
|
box-shadow: var(--shadow-l1);
|
||||||
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
transform: translateY(-2px);
|
||||||
|
box-shadow: var(--shadow-l2);
|
||||||
|
}
|
||||||
|
|
||||||
|
> a {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: space-between;
|
||||||
|
min-height: 132px;
|
||||||
|
padding: 24px 28px;
|
||||||
|
gap: 24px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-card__details {
|
||||||
|
min-width: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-card__title {
|
||||||
|
margin: 0 0 8px;
|
||||||
|
overflow: hidden;
|
||||||
|
color: var(--card-text-color-main);
|
||||||
|
font-size: 1.8rem;
|
||||||
|
font-weight: 700;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-card__description {
|
||||||
|
margin: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
color: var(--card-text-color-secondary);
|
||||||
|
font-size: 1.5rem;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.link-card__image {
|
||||||
|
flex: 0 0 72px;
|
||||||
|
width: 72px;
|
||||||
|
height: 72px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
display: block;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 12px;
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.links-grid {
|
||||||
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1280px) {
|
||||||
|
.links-grid {
|
||||||
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
17
config/_default/hugo.toml
Normal file
17
config/_default/hugo.toml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
baseURL = "https://www.taurusxin.com"
|
||||||
|
locale = "zh"
|
||||||
|
defaultContentLanguage = "zh"
|
||||||
|
hasCJKLanguage = true
|
||||||
|
theme = "hugo-theme-stack"
|
||||||
|
title = "TaurusXin 的独立博客"
|
||||||
|
timeout = "60s"
|
||||||
|
|
||||||
|
[services.disqus]
|
||||||
|
shortname = "taurusxin"
|
||||||
|
|
||||||
|
[pagination]
|
||||||
|
pagerSize = 10
|
||||||
|
|
||||||
|
[permalinks]
|
||||||
|
post = "/:slug/"
|
||||||
|
page = "/:slug/"
|
||||||
16
config/_default/markup.toml
Normal file
16
config/_default/markup.toml
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
[goldmark.renderer]
|
||||||
|
unsafe = true
|
||||||
|
|
||||||
|
[tableOfContents]
|
||||||
|
endLevel = 4
|
||||||
|
ordered = true
|
||||||
|
startLevel = 2
|
||||||
|
|
||||||
|
[highlight]
|
||||||
|
noClasses = false
|
||||||
|
codeFences = true
|
||||||
|
guessSyntax = true
|
||||||
|
lineNoStart = 1
|
||||||
|
lineNos = true
|
||||||
|
lineNumbersInTable = true
|
||||||
|
tabWidth = 4
|
||||||
74
config/_default/menu.toml
Normal file
74
config/_default/menu.toml
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
[[main]]
|
||||||
|
identifier = "home"
|
||||||
|
name = "首页"
|
||||||
|
url = "/"
|
||||||
|
weight = 1
|
||||||
|
[main.params]
|
||||||
|
icon = "home"
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "moments"
|
||||||
|
name = "拾光"
|
||||||
|
url = "https://moments.taurusxin.com"
|
||||||
|
weight = 5
|
||||||
|
[main.params]
|
||||||
|
icon = "moments"
|
||||||
|
newTab = true
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "travellings"
|
||||||
|
name = "开往"
|
||||||
|
url = "https://www.travellings.cn/go.html"
|
||||||
|
weight = 6
|
||||||
|
[main.params]
|
||||||
|
icon = "travellings"
|
||||||
|
newTab = true
|
||||||
|
|
||||||
|
[[main]]
|
||||||
|
identifier = "rss"
|
||||||
|
name = "RSS"
|
||||||
|
url = "/index.xml"
|
||||||
|
weight = 10
|
||||||
|
[main.params]
|
||||||
|
icon = "rss"
|
||||||
|
newTab = true
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
identifier = "github"
|
||||||
|
name = "GitHub"
|
||||||
|
url = "https://github.com/taurusxin"
|
||||||
|
weight = 1
|
||||||
|
[social.params]
|
||||||
|
icon = "brand-github"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
identifier = "bilibili"
|
||||||
|
name = "Bilibili"
|
||||||
|
url = "https://space.bilibili.com/4360325"
|
||||||
|
weight = 2
|
||||||
|
[social.params]
|
||||||
|
icon = "bilibili"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
identifier = "music"
|
||||||
|
name = "网易云音乐"
|
||||||
|
url = "https://music.163.com/#/user/home?id=260531598"
|
||||||
|
weight = 3
|
||||||
|
[social.params]
|
||||||
|
icon = "music"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
identifier = "mail"
|
||||||
|
name = "电邮"
|
||||||
|
url = "mailto:i@taurusxin.com"
|
||||||
|
weight = 4
|
||||||
|
[social.params]
|
||||||
|
icon = "mail"
|
||||||
|
|
||||||
|
[[social]]
|
||||||
|
identifier = "travellings"
|
||||||
|
name = "开往"
|
||||||
|
url = "https://www.travellings.cn/go.html"
|
||||||
|
weight = 5
|
||||||
|
[social.params]
|
||||||
|
icon = "travellings"
|
||||||
100
config/_default/params.toml
Normal file
100
config/_default/params.toml
Normal file
@@ -0,0 +1,100 @@
|
|||||||
|
mainSections = ["post"]
|
||||||
|
featuredImageField = "image"
|
||||||
|
rssFullContent = true
|
||||||
|
favicon = ""
|
||||||
|
SortBy = "default"
|
||||||
|
|
||||||
|
[footer]
|
||||||
|
since = 2018
|
||||||
|
customText = "Made with ❤️ in Hangzhou <br> <a href=\"https://beian.miit.gov.cn/\" target=\"_blank\">浙ICP备2022025362号-1</a>"
|
||||||
|
|
||||||
|
[dateFormat]
|
||||||
|
published = ":date_full"
|
||||||
|
lastUpdated = ":date_full"
|
||||||
|
|
||||||
|
[sidebar]
|
||||||
|
emoji = "🍉"
|
||||||
|
subtitle = "永远年轻 永远热泪盈眶"
|
||||||
|
compact = false
|
||||||
|
avatar = "img/avatar.png"
|
||||||
|
|
||||||
|
[article]
|
||||||
|
headingAnchor = false
|
||||||
|
math = false
|
||||||
|
toc = true
|
||||||
|
readingTime = true
|
||||||
|
|
||||||
|
[article.list]
|
||||||
|
showTags = false
|
||||||
|
|
||||||
|
[article.license]
|
||||||
|
enabled = true
|
||||||
|
default = "Licensed under CC BY-NC-SA 4.0"
|
||||||
|
|
||||||
|
[article.mermaid]
|
||||||
|
look = "classic"
|
||||||
|
lightTheme = "default"
|
||||||
|
darkTheme = "dark"
|
||||||
|
securityLevel = "strict"
|
||||||
|
htmlLabels = true
|
||||||
|
transparentBackground = false
|
||||||
|
|
||||||
|
[article.alertIcon]
|
||||||
|
note = ""
|
||||||
|
tip = ""
|
||||||
|
important = ""
|
||||||
|
warning = "⚠️"
|
||||||
|
caution = ""
|
||||||
|
|
||||||
|
[comments]
|
||||||
|
enabled = true
|
||||||
|
provider = "artalk"
|
||||||
|
|
||||||
|
[comments.artalk]
|
||||||
|
serverUrl = "https://artalk.taurusxin.com"
|
||||||
|
site = "TaurusXin 的独立博客"
|
||||||
|
darkMode = "auto"
|
||||||
|
|
||||||
|
[widgets]
|
||||||
|
homepage = [
|
||||||
|
{ type = "search" },
|
||||||
|
{ type = "archives", params = { limit = 5 } },
|
||||||
|
{ type = "categories", params = { limit = 10 } },
|
||||||
|
{ type = "tag-cloud", params = { limit = 10 } },
|
||||||
|
{ type = "status", params = { start = "2018-08-04", format = "yyyy 年 MM 月 dd 日" } },
|
||||||
|
]
|
||||||
|
page = [
|
||||||
|
{ type = "toc" },
|
||||||
|
]
|
||||||
|
|
||||||
|
[opengraph.twitter]
|
||||||
|
site = ""
|
||||||
|
card = "summary_large_image"
|
||||||
|
|
||||||
|
[colorScheme]
|
||||||
|
toggle = true
|
||||||
|
default = "auto"
|
||||||
|
|
||||||
|
[imageProcessing]
|
||||||
|
autoOrient = false
|
||||||
|
|
||||||
|
[imageProcessing.external]
|
||||||
|
timeout = "30s"
|
||||||
|
|
||||||
|
[imageProcessing.thumbnail]
|
||||||
|
enabled = true
|
||||||
|
|
||||||
|
[imageProcessing.content]
|
||||||
|
widths = [800, 1600, 2400]
|
||||||
|
enabled = false
|
||||||
|
|
||||||
|
[cookies]
|
||||||
|
enabled = false
|
||||||
|
showSettings = true
|
||||||
|
|
||||||
|
[cookies.categories]
|
||||||
|
analytics = false
|
||||||
|
functional = true
|
||||||
|
|
||||||
|
[render.image.externalLink]
|
||||||
|
enabled = true
|
||||||
11
config/_default/related.toml
Normal file
11
config/_default/related.toml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
includeNewer = true
|
||||||
|
threshold = 60
|
||||||
|
toLower = false
|
||||||
|
|
||||||
|
[[indices]]
|
||||||
|
name = "tags"
|
||||||
|
weight = 100
|
||||||
|
|
||||||
|
[[indices]]
|
||||||
|
name = "categories"
|
||||||
|
weight = 200
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
title: "友情链接"
|
title: "友情链接"
|
||||||
|
linksTitle: "朋友们"
|
||||||
slug: "friend"
|
slug: "friend"
|
||||||
layout: links
|
layout: links
|
||||||
menu:
|
menu:
|
||||||
@@ -12,7 +13,7 @@ edit: false
|
|||||||
comment: true
|
comment: true
|
||||||
---
|
---
|
||||||
|
|
||||||
### 申请要求
|
## 申请要求
|
||||||
|
|
||||||
感谢添加我为友链,作为互联网的一个独立的小角落,也希望您的网站能够满足以下几点简单的要求
|
感谢添加我为友链,作为互联网的一个独立的小角落,也希望您的网站能够满足以下几点简单的要求
|
||||||
|
|
||||||
@@ -25,7 +26,7 @@ comment: true
|
|||||||
|
|
||||||
我将每个季度审查一次所有已添加友链的网站,若发现网站无法访问或不符合上述要求,将移除该友链
|
我将每个季度审查一次所有已添加友链的网站,若发现网站无法访问或不符合上述要求,将移除该友链
|
||||||
|
|
||||||
### 友链申请格式
|
## 友链申请格式
|
||||||
|
|
||||||
请按以下格式在评论区留言~
|
请按以下格式在评论区留言~
|
||||||
|
|
||||||
@@ -35,4 +36,4 @@ comment: true
|
|||||||
>
|
>
|
||||||
> 网站图像:<https://cdn.taurusxin.com/hugo/avatar.jpg>
|
> 网站图像:<https://cdn.taurusxin.com/hugo/avatar.jpg>
|
||||||
>
|
>
|
||||||
> 网站描述:永远年轻 永远热泪盈眶
|
> 网站描述:永远年轻 永远热泪盈眶
|
||||||
|
|||||||
@@ -16,4 +16,4 @@ Lightbox = "https://cdn.jsdelivr.net/npm/photoswipe@5.4.4/dist/photoswipe-lightb
|
|||||||
|
|
||||||
[Artalk]
|
[Artalk]
|
||||||
Style = "https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.min.css"
|
Style = "https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.min.css"
|
||||||
Script = "https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.min.js"
|
Script = "https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.mjs"
|
||||||
|
|||||||
@@ -1,197 +0,0 @@
|
|||||||
Start building sites …
|
|
||||||
hugo v0.163.1-2a4fd58818ffdf45bbb2a97ab119bb4c46cd93f0+extended windows/amd64 BuildDate=2026-06-11T15:34:40Z VendorInfo=gohugoio
|
|
||||||
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021-12-13/calc.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021-12-13/calc.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Software.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Software.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Network.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Network.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/moments/2024/06/3411827213.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/moments/2024/06/3411827213.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/final.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/final.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif':
|
|
||||||
|
|
||||||
│ ZH
|
|
||||||
──────────────────┼─────
|
|
||||||
Pages │ 328
|
|
||||||
Paginator pages │ 26
|
|
||||||
Non-page files │ 6
|
|
||||||
Static files │ 13
|
|
||||||
Processed images │ 23
|
|
||||||
Aliases │ 123
|
|
||||||
Cleaned │ 233
|
|
||||||
|
|
||||||
Total in 19164 ms
|
|
||||||
@@ -1,199 +0,0 @@
|
|||||||
Start building sites …
|
|
||||||
hugo v0.163.1-2a4fd58818ffdf45bbb2a97ab119bb4c46cd93f0+extended windows/amd64 BuildDate=2026-06-11T15:34:40Z VendorInfo=gohugoio
|
|
||||||
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/xuanlv-launcher.webp": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/xuanlv-launcher.webp':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/hmcl.webp": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/hmcl.webp':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021-12-13/calc.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021-12-13/calc.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Software.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Software.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Network.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Network.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/moments/2024/06/3411827213.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/moments/2024/06/3411827213.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/final.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/final.png':
|
|
||||||
|
|
||||||
│ ZH
|
|
||||||
──────────────────┼─────
|
|
||||||
Pages │ 328
|
|
||||||
Paginator pages │ 26
|
|
||||||
Non-page files │ 6
|
|
||||||
Static files │ 13
|
|
||||||
Processed images │ 23
|
|
||||||
Aliases │ 123
|
|
||||||
Cleaned │ 233
|
|
||||||
|
|
||||||
Total in 32106 ms
|
|
||||||
197
hugo-build.log
197
hugo-build.log
@@ -1,197 +0,0 @@
|
|||||||
Start building sites …
|
|
||||||
hugo v0.163.1-2a4fd58818ffdf45bbb2a97ab119bb4c46cd93f0+extended windows/amd64 BuildDate=2026-06-11T15:34:40Z VendorInfo=gohugoio
|
|
||||||
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2019/09/2084489867.png#mirages-width=654&mirages-height=588&mirages-cdn-type=4':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/894321323.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/04/504569709.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/07/3181345122.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/05/1835595688.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1995119058.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/1250702414.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/08/3036447667.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2295237810.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3665051347.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2344206640.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3785843574.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1919259477.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/888846759.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/3663759920.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3228330654.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/2915725804.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/1621281381.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3610135854.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/10/4135829782.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3669373774.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3206779559.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/102658718.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/3543212861.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1701394577.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/830367018.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1890427557.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/165089096.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/958838781.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1928107183.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/438523520.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/459787715.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/02/24/Xnip2021-02-24_10-19-40.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows2000.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/usr/uploads/2020/09/1198378110.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/6.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Chrome.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows-activate.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/404.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/uniapp.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/06/blog-http3.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/toolbox.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/unmineable-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/3.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/mvvm.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/08/new-options.jpeg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/hide-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/ua-switcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/vs2019.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/12/tomcat10-servlet-api.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Trust-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/4.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-main.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/26/utf8mb4-unicode.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-option.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/input-type.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/code.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/07/miniapp-me.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-download-2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/01/04/5.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/audio-quality.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/12/28/Binance-Doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/hbuilderx.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/language.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/03/21/windows10-install.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/album-support.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/download.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Adobe%20CC.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/27/dogecoin-core.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/archive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/adobe-creative-cloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/06-08/Dolby-listening.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/pvg-hkg-meal.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/require-libs.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/receive.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Davinci%20Resolve.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/09/loseless-space.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/london-flight.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/04/22/Microsoft%20365.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/lhr-bus-station-cafe.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/cl-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/point-msvc-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-1.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/msvc-cli.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/11/19/connection-lost.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/accommodation-2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/06/14/success.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/city-centre.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/03/30/doge_mining_bzminer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/street-walking.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/10/04/uni-building.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/old-cdn/typecho/2021/05/21/unmineable-doge-address.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021-12-13/calc.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021-12-13/calc.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/05-30/image-20220530200309584.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111254909.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/icloud.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-27/image-20220727235855829.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/grub-customizer.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111604454.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-30/change-env.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111702853.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/hugo-theme-stack.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724121747259.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2021/12-31/tela-1080p-preview.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716112241989.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/09/01/taurusxin.com.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-search.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-16/image-20220716111920845.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-info.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724123219633.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/python-version.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/03/05/image-20230305220233314.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/brew-update.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/before.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/07-24/image-20220724124717718.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/iterm2.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/05/22/after.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/10/12/nginx-quic-http3-roadmap.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/theme-minimal.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/offcial-site.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/color-presets.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/london-us-embassy.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/pixpin-functions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/dracula.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/niv-interview-number.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/long-screen-shot.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/01/23/visa-10-years.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/08/screen-shot-ocr.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/04/04/text-recover.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-6b.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/zshrc-plugin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/05/12/fliqlo-source.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/syntax-highlighting.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/24h2-missing-driver.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/%E6%88%91%E7%9A%84%20NAS.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/10/27/23h2-missing-driver.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2022/01-26/auto-suggestions-folder.gif':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/disks.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/cmd.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/DSM7.2.1.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/powershell.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/RAM.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/microsoft-store.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Software.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Software.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2023/12/27/chatglm3-demo.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-origin.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Emby-Transcoding.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/winterm-ps7.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-index.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/edgeone.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/Network.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/Network.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/model-speed.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/msstore-ohmyposh.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/08/image-20251208235559914.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/moments/2024/06/3411827213.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/moments/2024/06/3411827213.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/11/10/cerebras-pricing.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000434150.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/09/image-20251209000227555.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/jetbrainsmono-nerdfont.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/06/25/N2.jpg':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/switch-font.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/ohmyposh-activated.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/omp-ys-theme.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2024/08/09/final.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2024/08/09/final.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/multimc5.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/prism-launcher.png':
|
|
||||||
WARN Failed to fetch remote resource "https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png": template: _partials/helper/image.html:32:30: executing "_partials/helper/image.html" at <resources.GetRemote>: error calling GetRemote: failed to fetch remote resource from 'https://cdn.taurusxin.com/hugo/2025/12/31/pl-mod-manager.png':
|
|
||||||
|
|
||||||
│ ZH
|
|
||||||
──────────────────┼─────
|
|
||||||
Pages │ 328
|
|
||||||
Paginator pages │ 26
|
|
||||||
Non-page files │ 6
|
|
||||||
Static files │ 13
|
|
||||||
Processed images │ 23
|
|
||||||
Aliases │ 123
|
|
||||||
Cleaned │ 4
|
|
||||||
|
|
||||||
Total in 309 ms
|
|
||||||
318
hugo.toml
318
hugo.toml
@@ -1,318 +0,0 @@
|
|||||||
baseURL = "https://www.taurusxin.com"
|
|
||||||
locale = "zh"
|
|
||||||
defaultContentLanguage = "zh"
|
|
||||||
hasCJKLanguage = true
|
|
||||||
theme = "hugo-theme-stack"
|
|
||||||
title = "TaurusXin 的独立博客"
|
|
||||||
timeout = "60s"
|
|
||||||
|
|
||||||
[services.disqus]
|
|
||||||
shortname = "taurusxin"
|
|
||||||
|
|
||||||
[pagination]
|
|
||||||
pagerSize = 10
|
|
||||||
|
|
||||||
[permalinks]
|
|
||||||
post = "/:slug/"
|
|
||||||
page = "/:slug/"
|
|
||||||
|
|
||||||
[params]
|
|
||||||
mainSections = ["post"]
|
|
||||||
featuredImageField = "image"
|
|
||||||
rssFullContent = true
|
|
||||||
favicon = ""
|
|
||||||
SortBy = "default"
|
|
||||||
|
|
||||||
[params.footer]
|
|
||||||
since = 2018
|
|
||||||
customText = "Made with ❤️ in Hangzhou <br> <a href=\"https://beian.miit.gov.cn/\" target=\"_blank\">浙ICP备2022025362号-1</a>"
|
|
||||||
|
|
||||||
[params.dateFormat]
|
|
||||||
published = ":date_full"
|
|
||||||
lastUpdated = ":date_full"
|
|
||||||
|
|
||||||
[params.sidebar]
|
|
||||||
emoji = "🍉"
|
|
||||||
subtitle = "永远年轻 永远热泪盈眶"
|
|
||||||
compact = false
|
|
||||||
avatar = "img/avatar.png"
|
|
||||||
|
|
||||||
[params.article]
|
|
||||||
headingAnchor = false
|
|
||||||
math = false
|
|
||||||
toc = true
|
|
||||||
readingTime = true
|
|
||||||
|
|
||||||
[params.article.list]
|
|
||||||
showTags = false
|
|
||||||
|
|
||||||
[params.article.license]
|
|
||||||
enabled = true
|
|
||||||
default = "Licensed under CC BY-NC-SA 4.0"
|
|
||||||
|
|
||||||
[params.article.mermaid]
|
|
||||||
look = "classic"
|
|
||||||
lightTheme = "default"
|
|
||||||
darkTheme = "dark"
|
|
||||||
securityLevel = "strict"
|
|
||||||
htmlLabels = true
|
|
||||||
transparentBackground = false
|
|
||||||
|
|
||||||
[params.article.alertIcon]
|
|
||||||
note = ""
|
|
||||||
tip = ""
|
|
||||||
important = ""
|
|
||||||
warning = "⚠️"
|
|
||||||
caution = ""
|
|
||||||
|
|
||||||
[params.comments]
|
|
||||||
enabled = true
|
|
||||||
provider = "artalk"
|
|
||||||
|
|
||||||
[params.comments.artalk]
|
|
||||||
serverUrl = "https://artalk.taurusxin.com"
|
|
||||||
site = "TaurusXin 的独立博客"
|
|
||||||
darkMode = "auto"
|
|
||||||
|
|
||||||
[params.comments.disqusjs]
|
|
||||||
shortname = "taurusxin"
|
|
||||||
apiUrl = ""
|
|
||||||
apiKey = ""
|
|
||||||
admin = ""
|
|
||||||
adminLabel = ""
|
|
||||||
|
|
||||||
[params.comments.utterances]
|
|
||||||
repo = ""
|
|
||||||
issueTerm = "pathname"
|
|
||||||
label = ""
|
|
||||||
|
|
||||||
[params.comments.beaudar]
|
|
||||||
repo = ""
|
|
||||||
issueTerm = "pathname"
|
|
||||||
label = ""
|
|
||||||
theme = ""
|
|
||||||
|
|
||||||
[params.comments.remark42]
|
|
||||||
host = ""
|
|
||||||
site = ""
|
|
||||||
locale = "en"
|
|
||||||
max_shown_comments = 15
|
|
||||||
show_email_subscription = true
|
|
||||||
|
|
||||||
[params.comments.vssue]
|
|
||||||
platform = ""
|
|
||||||
owner = ""
|
|
||||||
repo = ""
|
|
||||||
clientId = ""
|
|
||||||
clientSecret = ""
|
|
||||||
autoCreateIssue = false
|
|
||||||
|
|
||||||
[params.comments.waline]
|
|
||||||
serverURL = ""
|
|
||||||
lang = ""
|
|
||||||
pageview = ""
|
|
||||||
avatar = ""
|
|
||||||
emoji = ["https://unpkg.com/@waline/emojis@1.0.1/weibo"]
|
|
||||||
requiredMeta = ["name", "email", "url"]
|
|
||||||
|
|
||||||
[params.comments.waline.locale]
|
|
||||||
admin = "Admin"
|
|
||||||
placeholder = ""
|
|
||||||
|
|
||||||
[params.comments.twikoo]
|
|
||||||
envId = ""
|
|
||||||
region = ""
|
|
||||||
path = ""
|
|
||||||
lang = ""
|
|
||||||
|
|
||||||
[params.comments.cactus]
|
|
||||||
defaultHomeserverUrl = "https://matrix.cactus.chat:8448"
|
|
||||||
serverName = "cactus.chat"
|
|
||||||
siteName = ""
|
|
||||||
|
|
||||||
[params.comments.giscus]
|
|
||||||
repo = ""
|
|
||||||
repoID = ""
|
|
||||||
category = ""
|
|
||||||
categoryID = ""
|
|
||||||
mapping = "title"
|
|
||||||
lightTheme = "light"
|
|
||||||
darkTheme = "dark_dimmed"
|
|
||||||
reactionsEnabled = 1
|
|
||||||
emitMetadata = 0
|
|
||||||
inputPosition = "top"
|
|
||||||
lang = "en"
|
|
||||||
strict = 0
|
|
||||||
loading = "lazy"
|
|
||||||
|
|
||||||
[params.comments.gitalk]
|
|
||||||
owner = ""
|
|
||||||
admin = ""
|
|
||||||
repo = ""
|
|
||||||
clientID = ""
|
|
||||||
clientSecret = ""
|
|
||||||
proxy = ""
|
|
||||||
|
|
||||||
[params.comments.cusdis]
|
|
||||||
host = "https://cusdis.com"
|
|
||||||
id = ""
|
|
||||||
|
|
||||||
[params.comments.comentario]
|
|
||||||
url = ""
|
|
||||||
autoInit = false
|
|
||||||
autoNonInteractiveSso = false
|
|
||||||
cssOverride = ""
|
|
||||||
lang = ""
|
|
||||||
liveUpdate = false
|
|
||||||
maxLevel = 0
|
|
||||||
noFonts = false
|
|
||||||
theme = ""
|
|
||||||
|
|
||||||
[params.widgets]
|
|
||||||
homepage = [
|
|
||||||
{ type = "search" },
|
|
||||||
{ type = "archives", params = { limit = 5 } },
|
|
||||||
{ type = "categories", params = { limit = 10 } },
|
|
||||||
{ type = "tag-cloud", params = { limit = 10 } },
|
|
||||||
{ type = "status", params = { start = "2018-08-04", format = "yyyy 年 MM 月 dd 日" } },
|
|
||||||
]
|
|
||||||
page = [
|
|
||||||
{ type = "toc" },
|
|
||||||
]
|
|
||||||
|
|
||||||
[params.opengraph.twitter]
|
|
||||||
site = ""
|
|
||||||
card = "summary_large_image"
|
|
||||||
|
|
||||||
[params.colorScheme]
|
|
||||||
toggle = true
|
|
||||||
default = "auto"
|
|
||||||
|
|
||||||
[params.imageProcessing]
|
|
||||||
autoOrient = false
|
|
||||||
|
|
||||||
[params.imageProcessing.external]
|
|
||||||
timeout = "30s"
|
|
||||||
|
|
||||||
[params.imageProcessing.thumbnail]
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
[params.imageProcessing.content]
|
|
||||||
widths = [800, 1600, 2400]
|
|
||||||
enabled = false
|
|
||||||
|
|
||||||
[params.cookies]
|
|
||||||
enabled = false
|
|
||||||
showSettings = true
|
|
||||||
|
|
||||||
[params.cookies.categories]
|
|
||||||
analytics = false
|
|
||||||
functional = true
|
|
||||||
|
|
||||||
[params.render.image.externalLink]
|
|
||||||
enabled = true
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "home"
|
|
||||||
name = "首页"
|
|
||||||
url = "/"
|
|
||||||
weight = 1
|
|
||||||
[menu.main.params]
|
|
||||||
icon = "home"
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "moments"
|
|
||||||
name = "拾光"
|
|
||||||
url = "https://moments.taurusxin.com"
|
|
||||||
weight = 5
|
|
||||||
[menu.main.params]
|
|
||||||
icon = "moments"
|
|
||||||
newTab = true
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "travellings"
|
|
||||||
name = "开往"
|
|
||||||
url = "https://www.travellings.cn/go.html"
|
|
||||||
weight = 6
|
|
||||||
[menu.main.params]
|
|
||||||
icon = "travellings"
|
|
||||||
newTab = true
|
|
||||||
|
|
||||||
[[menu.main]]
|
|
||||||
identifier = "rss"
|
|
||||||
name = "RSS"
|
|
||||||
url = "/index.xml"
|
|
||||||
weight = 10
|
|
||||||
[menu.main.params]
|
|
||||||
icon = "rss"
|
|
||||||
newTab = true
|
|
||||||
|
|
||||||
[[menu.social]]
|
|
||||||
identifier = "github"
|
|
||||||
name = "GitHub"
|
|
||||||
url = "https://github.com/taurusxin"
|
|
||||||
weight = 1
|
|
||||||
[menu.social.params]
|
|
||||||
icon = "brand-github"
|
|
||||||
|
|
||||||
[[menu.social]]
|
|
||||||
identifier = "bilibili"
|
|
||||||
name = "Bilibili"
|
|
||||||
url = "https://space.bilibili.com/4360325"
|
|
||||||
weight = 2
|
|
||||||
[menu.social.params]
|
|
||||||
icon = "bilibili"
|
|
||||||
|
|
||||||
[[menu.social]]
|
|
||||||
identifier = "music"
|
|
||||||
name = "网易云音乐"
|
|
||||||
url = "https://music.163.com/#/user/home?id=260531598"
|
|
||||||
weight = 3
|
|
||||||
[menu.social.params]
|
|
||||||
icon = "music"
|
|
||||||
|
|
||||||
[[menu.social]]
|
|
||||||
identifier = "mail"
|
|
||||||
name = "电邮"
|
|
||||||
url = "mailto:i@taurusxin.com"
|
|
||||||
weight = 4
|
|
||||||
[menu.social.params]
|
|
||||||
icon = "mail"
|
|
||||||
|
|
||||||
[[menu.social]]
|
|
||||||
identifier = "travellings"
|
|
||||||
name = "开往"
|
|
||||||
url = "https://www.travellings.cn/go.html"
|
|
||||||
weight = 5
|
|
||||||
[menu.social.params]
|
|
||||||
icon = "travellings"
|
|
||||||
|
|
||||||
[related]
|
|
||||||
includeNewer = true
|
|
||||||
threshold = 60
|
|
||||||
toLower = false
|
|
||||||
|
|
||||||
[[related.indices]]
|
|
||||||
name = "tags"
|
|
||||||
weight = 100
|
|
||||||
|
|
||||||
[[related.indices]]
|
|
||||||
name = "categories"
|
|
||||||
weight = 200
|
|
||||||
|
|
||||||
[markup.goldmark.renderer]
|
|
||||||
unsafe = true
|
|
||||||
|
|
||||||
[markup.tableOfContents]
|
|
||||||
endLevel = 4
|
|
||||||
ordered = true
|
|
||||||
startLevel = 2
|
|
||||||
|
|
||||||
[markup.highlight]
|
|
||||||
noClasses = false
|
|
||||||
codeFences = true
|
|
||||||
guessSyntax = true
|
|
||||||
lineNoStart = 1
|
|
||||||
lineNos = true
|
|
||||||
lineNumbersInTable = true
|
|
||||||
tabWidth = 4
|
|
||||||
@@ -1,31 +0,0 @@
|
|||||||
{{- $style := resources.Get "scss/partials/comments/artalk.scss" | toCSS | minify -}}
|
|
||||||
{{- with .Site.Params.comments.artalk -}}
|
|
||||||
{{- $serverUrl := default .server .serverUrl -}}
|
|
||||||
<link href="https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.min.css" rel="stylesheet">
|
|
||||||
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
|
|
||||||
|
|
||||||
<script src="https://cdn.taurusxin.com/hugo/assets/artalk/2.9.1/Artalk.min.js"></script>
|
|
||||||
|
|
||||||
<div id="Comments" class="artalk-container"></div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
function isDarkMode() {
|
|
||||||
return document.documentElement.dataset.scheme === 'dark';
|
|
||||||
}
|
|
||||||
|
|
||||||
const artalkInstance = Artalk.init({
|
|
||||||
el: '#Comments',
|
|
||||||
pageKey: '{{ $.RelPermalink }}',
|
|
||||||
pageTitle: '{{ $.Title }}',
|
|
||||||
server: '{{ $serverUrl }}',
|
|
||||||
site: '{{ .site }}',
|
|
||||||
darkMode: isDarkMode(),
|
|
||||||
locale: 'auto',
|
|
||||||
});
|
|
||||||
|
|
||||||
window.addEventListener('onColorSchemeChange', (e) => {
|
|
||||||
if (!artalkInstance || typeof artalkInstance.setDarkMode !== 'function') return;
|
|
||||||
artalkInstance.setDarkMode(e.detail === 'dark');
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
{{- end -}}
|
|
||||||
@@ -9,11 +9,6 @@
|
|||||||
<meta name="theme-color" content="#f5f5fa" media="(prefers-color-scheme: light)">
|
<meta name="theme-color" content="#f5f5fa" media="(prefers-color-scheme: light)">
|
||||||
<meta name="theme-color" content="#303030" media="(prefers-color-scheme: dark)">
|
<meta name="theme-color" content="#303030" media="(prefers-color-scheme: dark)">
|
||||||
|
|
||||||
<!-- highlight.js -->
|
|
||||||
<link href="https://cdn.taurusxin.com/hugo/assets/highlight.js/9.12.0/styles/atom-one-dark.min.css" rel="stylesheet">
|
|
||||||
<script src="https://cdn.taurusxin.com/hugo/assets/highlight.js/9.12.0/highlight.min.js"></script>
|
|
||||||
<script>hljs.initHighlightingOnLoad()</script>
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
@font-face{
|
@font-face{
|
||||||
font-family: 'Maple Font Mono';
|
font-family: 'Maple Font Mono';
|
||||||
|
|||||||
@@ -1,37 +1,44 @@
|
|||||||
{{ define "body-class" }}article-page keep-sidebar{{ end }}
|
{{ define "body-class" }}article-page keep-sidebar links-page{{ end }}
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
{{ partial "article/article.html" . }}
|
{{ $linksTitle := default .Title .Params.linksTitle }}
|
||||||
|
<section class="links-section" aria-labelledby="links-title">
|
||||||
|
<header class="links-section__header">
|
||||||
|
<h1 id="links-title">{{ $linksTitle }}</h1>
|
||||||
|
</header>
|
||||||
|
|
||||||
<div class="article-list--compact links">
|
<div class="links-grid">
|
||||||
{{ $siteResources := resources }}
|
{{ $siteResources := resources }}
|
||||||
{{ range $i, $link := hugo.Data.links }}
|
{{ range $link := hugo.Data.links }}
|
||||||
<article>
|
<article class="link-card">
|
||||||
<a href="{{ $link.website }}" target="_blank" rel="noopener">
|
<a href="{{ $link.website }}" target="_blank" rel="noopener">
|
||||||
<div class="article-details">
|
<div class="link-card__details">
|
||||||
<h2 class="article-title">
|
<h2 class="link-card__title">
|
||||||
{{- $link.title -}}
|
{{- $link.title -}}
|
||||||
</h2>
|
</h2>
|
||||||
<footer class="article-time">
|
<p class="link-card__description">
|
||||||
{{ with $link.description }}
|
{{ with $link.description }}
|
||||||
{{ . }}
|
{{ . }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $link.website }}
|
{{ $link.website }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</footer>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ if $link.image }}
|
{{ if $link.image }}
|
||||||
{{ $image := $siteResources.Get (delimit (slice "link-img/" $link.image) "") | resources.Fingerprint "md5" }}
|
{{ $image := $siteResources.Get (delimit (slice "link-img/" $link.image) "") | resources.Fingerprint "md5" }}
|
||||||
{{ $imageResized := $image.Resize "120x120" }}
|
{{ $imageResized := $image.Resize "120x120" }}
|
||||||
<div class="article-image">
|
<div class="link-card__image">
|
||||||
<img src="{{ $imageResized.RelPermalink }}" width="{{ $imageResized.Width }}" height="{{ $imageResized.Height }}"
|
<img src="{{ $imageResized.RelPermalink }}" width="{{ $imageResized.Width }}" height="{{ $imageResized.Height }}"
|
||||||
loading="lazy" data-key="links-{{ $link.website }}" data-hash="{{ $image.Data.Integrity }}">
|
loading="lazy" alt="{{ $link.title }}" data-key="links-{{ $link.website }}" data-hash="{{ $image.Data.Integrity }}">
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</a>
|
</a>
|
||||||
</article>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
{{ partial "article/article.html" . }}
|
||||||
|
|
||||||
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
|
{{ if or (not (isset .Params "comments")) (eq .Params.comments "true")}}
|
||||||
{{ partial "comments/include" . }}
|
{{ partial "comments/include" . }}
|
||||||
|
|||||||
Reference in New Issue
Block a user