diff --git a/2025/undefined/index.html b/2025/undefined/index.html index 6962cf4..40ecafa 100644 --- a/2025/undefined/index.html +++ b/2025/undefined/index.html @@ -181,7 +181,7 @@ "@type": "NewsArticle", "headline": "照片集", "image": "https://imgur.lzmun.com/picgo/after2022/6DD1FBC3-AD8A-4340-842D-6ACF531F8291_1_105_c.jpeg_itp", - "datePublished": "Fri Feb 07 2025 12:31:35 GMT+0000", + "datePublished": "Sat Feb 08 2025 12:28:52 GMT+0000", "author": [{ "@type": "Person", "name": "DonkeyKane", diff --git a/archives/2025/02/index.html b/archives/2025/02/index.html index 63c64e8..a1de302 100644 --- a/archives/2025/02/index.html +++ b/archives/2025/02/index.html @@ -312,7 +312,7 @@
照片集
- 2025-02-07 + 2025-02-08
diff --git a/archives/2025/index.html b/archives/2025/index.html index 533d010..1894a45 100644 --- a/archives/2025/index.html +++ b/archives/2025/index.html @@ -312,7 +312,7 @@
照片集
- 2025-02-07 + 2025-02-08
diff --git a/archives/index.html b/archives/index.html index 2174e5e..0e9f478 100644 --- a/archives/index.html +++ b/archives/index.html @@ -312,7 +312,7 @@
照片集
- 2025-02-07 + 2025-02-08
diff --git a/atom.xml b/atom.xml index afe9a52..e168412 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ - 2025-02-07T12:31:35.085Z + 2025-02-08T12:28:52.122Z https://xiaolin2004.github.io/gallery/ @@ -20,8 +20,8 @@ 照片集 https://xiaolin2004.github.io/gallery/2025/undefined/ - 2025-02-07T12:31:35.085Z - 2025-02-07T12:31:35.085Z + 2025-02-08T12:28:52.122Z + 2025-02-08T12:28:52.122Z diff --git a/content.json b/content.json index 4c450d3..aa13c2e 100644 --- a/content.json +++ b/content.json @@ -1 +1 @@ -{"meta":{"title":"照片集","subtitle":"Take Photo Think Seriously","description":"拿起相机,认真思考","author":"DonkeyKane","url":"https://xiaolin2004.github.io/gallery","root":"/gallery/"},"pages":[{"title":"编辑器","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"editor.html","permalink":"https://xiaolin2004.github.io/gallery/editor.html","excerpt":"","text":""},{"title":"GridAll","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"grid-all.html","permalink":"https://xiaolin2004.github.io/gallery/grid-all.html","excerpt":"","text":""},{"title":"Map-照片集","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"location.html","permalink":"https://xiaolin2004.github.io/gallery/location.html","excerpt":"","text":""},{"title":"","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"manifest.json","permalink":"https://xiaolin2004.github.io/gallery/manifest.json","excerpt":"","text":"{\"name\":\"Gallery\",\"short_name\":\"Gallery\",\"start_url\":\".\",\"display\":\"standalone\",\"icons\":[{\"sizes\":\"144x144\",\"type\":\"image/png\"}],\"lang\":\"zh-CN\",\"background_color\":\"#ffffff\"}"},{"title":"Grid","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"grid.html","permalink":"https://xiaolin2004.github.io/gallery/grid.html","excerpt":"","text":""},{"title":"Photo","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"photo.html","permalink":"https://xiaolin2004.github.io/gallery/photo.html","excerpt":"","text":""},{"title":"数据查询","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"query.html","permalink":"https://xiaolin2004.github.io/gallery/query.html","excerpt":"","text":""},{"title":"随机照片","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"random.html","permalink":"https://xiaolin2004.github.io/gallery/random.html","excerpt":"","text":""},{"title":"Gallery","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"rss.html","permalink":"https://xiaolin2004.github.io/gallery/rss.html","excerpt":"","text":""},{"title":"状态监控","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"status.html","permalink":"https://xiaolin2004.github.io/gallery/status.html","excerpt":"","text":""},{"title":"查询用例","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"queryphase.html","permalink":"https://xiaolin2004.github.io/gallery/queryphase.html","excerpt":"","text":"Group all image maker SELECT IFNULL(EXIFData.maker, 'NONE') AS maker, COUNT(*) AS count FROM Photo LEFT OUTER JOIN EXIFData ON Photo.exif_data_id = EXIFData.id GROUP BY maker ORDER BY maker TRY IT Group by focal length and order by count. SELECT EXIFData.focal_length, COUNT(*) AS count FROM Photo LEFT OUTER JOIN EXIFData ON Photo.exif_data_id = EXIFData.id WHERE Photo.exif_data_id IS NOT NULL OR Photo.exif <> '' GROUP BY EXIFData.focal_length ORDER BY CAST(EXIFData.focal_length as DOUBLE) DESC TRY IT Give me random 5 fujifilm picture SELECT photo.*, exifdata.maker FROM photo LEFT OUTER JOIN exifdata ON photo.exif_data_id = exifdata.id WHERE photo.location_id NOT NULL AND exifdata.maker = 'FUJIFILM' ORDER BY RANDOM() LIMIT 5; TRY IT Get N group by F Number SELECT id, path, name, desc, f_number, lo, hi FROM ( SELECT p.id, p.path, p.name, p.desc, e.f_number, l.lo, l.hi, ROW_NUMBER() OVER (PARTITION BY e.f_number ORDER BY p.id) AS row_num FROM photo p JOIN exifdata e ON p.exif_data_id = e.id LEFT JOIN location l ON p.location_id = l.id ) subquery WHERE row_num <= 10; TRY IT Group by country SELECT country, COUNT(*) as count FROM location GROUP BY country TRY IT"},{"title":"Tags","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"tags.html","permalink":"https://xiaolin2004.github.io/gallery/tags.html","excerpt":"","text":""},{"title":"年终总结","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"summary.html","permalink":"https://xiaolin2004.github.io/gallery/summary.html","excerpt":"","text":""},{"title":"照片集","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"gallery/index.html","permalink":"https://xiaolin2004.github.io/gallery/gallery/index.html","excerpt":"","text":""},{"title":"上野莫奈特展","date":"2025-01-07T00:00:00.000Z","updated":"2025-02-07T12:31:56.999Z","comments":true,"path":"Monet.html","permalink":"https://xiaolin2004.github.io/gallery/Monet.html","excerpt":"","text":""},{"title":"上野浅草寺","date":"2025-01-07T00:00:00.000Z","updated":"2025-02-07T12:31:57.193Z","comments":true,"path":"Asakusa.html","permalink":"https://xiaolin2004.github.io/gallery/Asakusa.html","excerpt":"","text":""},{"title":"银阁寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-07T12:31:58.310Z","comments":true,"path":"Ginkaku-ji.html","permalink":"https://xiaolin2004.github.io/gallery/Ginkaku-ji.html","excerpt":"","text":""},{"title":"河口湖","date":"2025-01-02T00:00:00.000Z","updated":"2025-02-07T12:31:58.229Z","comments":true,"path":"Kawaguchiko.html","permalink":"https://xiaolin2004.github.io/gallery/Kawaguchiko.html","excerpt":"","text":""},{"title":"鸭川","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-07T12:31:58.395Z","comments":true,"path":"Kamomioya-jinja.html","permalink":"https://xiaolin2004.github.io/gallery/Kamomioya-jinja.html","excerpt":"","text":""},{"title":"京都龙安寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-07T12:31:58.690Z","comments":true,"path":"Ryoanji.html","permalink":"https://xiaolin2004.github.io/gallery/Ryoanji.html","excerpt":"","text":""},{"title":"京都鹿苑寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-07T12:31:58.748Z","comments":true,"path":"Rokuonji.html","permalink":"https://xiaolin2004.github.io/gallery/Rokuonji.html","excerpt":"","text":""},{"title":"海珠湿地","date":"2024-10-19T00:00:00.000Z","updated":"2025-02-07T12:31:59.269Z","comments":true,"path":"Haizhu_wetland.html","permalink":"https://xiaolin2004.github.io/gallery/Haizhu_wetland.html","excerpt":"","text":""},{"title":"广州动物园","date":"2024-12-08T00:00:00.000Z","updated":"2025-02-07T12:31:59.259Z","comments":true,"path":"GuangzhouZoo.html","permalink":"https://xiaolin2004.github.io/gallery/GuangzhouZoo.html","excerpt":"","text":""},{"title":"杭州飞来峰","date":"2024-01-23T00:00:00.000Z","updated":"2025-02-07T12:31:59.616Z","comments":true,"path":"Hangzhou.html","permalink":"https://xiaolin2004.github.io/gallery/Hangzhou.html","excerpt":"","text":""},{"title":"杭州西湖","date":"2024-01-23T00:00:00.000Z","updated":"2025-02-07T12:32:00.032Z","comments":true,"path":"HangzhouWestLake.html","permalink":"https://xiaolin2004.github.io/gallery/HangzhouWestLake.html","excerpt":"","text":""},{"title":"东京塔","date":"2025-01-06T00:00:00.000Z","updated":"2025-02-07T12:31:57.213Z","comments":true,"path":"Tokyo_Tower.html","permalink":"https://xiaolin2004.github.io/gallery/Tokyo_Tower.html","excerpt":"","text":""},{"title":"上海","date":"2024-01-22T00:00:00.000Z","updated":"2025-02-07T12:32:00.438Z","comments":true,"path":"Shanghai.html","permalink":"https://xiaolin2004.github.io/gallery/Shanghai.html","excerpt":"","text":""},{"title":"东京皇居","date":"2025-01-06T00:00:00.000Z","updated":"2025-02-07T12:31:57.321Z","comments":true,"path":"Imperial-Palace.html","permalink":"https://xiaolin2004.github.io/gallery/Imperial-Palace.html","excerpt":"","text":""},{"title":"鶴岡八幡宮","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-07T12:31:57.341Z","comments":true,"path":"Tsurugaoka_Hachimangu.html","permalink":"https://xiaolin2004.github.io/gallery/Tsurugaoka_Hachimangu.html","excerpt":"","text":""},{"title":"建长寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-07T12:31:57.458Z","comments":true,"path":"KAMAKURA.html","permalink":"https://xiaolin2004.github.io/gallery/KAMAKURA.html","excerpt":"","text":""},{"title":"円覚寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-07T12:31:57.594Z","comments":true,"path":"Yuen_Kwok_Buddhist_Temple.html","permalink":"https://xiaolin2004.github.io/gallery/Yuen_Kwok_Buddhist_Temple.html","excerpt":"","text":""},{"title":"佐助稻荷","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-07T12:31:57.685Z","comments":true,"path":"Sasuke_Inari_Shrine.html","permalink":"https://xiaolin2004.github.io/gallery/Sasuke_Inari_Shrine.html","excerpt":"","text":""},{"title":"长谷寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-07T12:31:57.869Z","comments":true,"path":"Hasedera_Temple.html","permalink":"https://xiaolin2004.github.io/gallery/Hasedera_Temple.html","excerpt":"","text":""},{"title":"江之岛","date":"2025-01-03T00:00:00.000Z","updated":"2025-02-07T12:31:57.982Z","comments":true,"path":"Enoshima.html","permalink":"https://xiaolin2004.github.io/gallery/Enoshima.html","excerpt":"","text":""},{"title":"搜索","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"search/index.html","permalink":"https://xiaolin2004.github.io/gallery/search/index.html","excerpt":"","text":""},{"title":"Hexo-Theme-Type 文档","date":"2025-02-07T12:31:35.086Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"/type/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/index.html","excerpt":"","text":"简介 Type 是一个简洁、美观并且力求快速的 Hexo 主题,能以较好的样式展示文字和图片,并且对移动端、夜间模式做了一些优化。希望 Type 能 在 Hexo 上承载您的文字、影像作品。 主题仍在开发中,最新开发进展请看:aiokr/Hexo-Theme-Type at dev 文档目录 快速开始 主题设置","author":"aiokr"},{"title":"快速开始","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"/type/getstart/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/getstart/index.html","excerpt":"","text":"快速开始 要使用 Type,必须首先安装 Hexo。你可以访问 Hexo 的文档来了解如何安装 Hexo hexo.io/zh-cn/。 Hexo 中有两份配置文件,分别为站点目录下的 _config.yml 和 主题目录下的 _config.yml,后文将前者称为「站点配置文件」,后者称之为「主题配置文件」。 本主题支持 npm 和 git 两种安装方式,你也可以下载 release 版本手动安装。 使用 npm 安装主题 进入 Hexo 根目录,依次执行以下命令。 npm install hexo-theme-type --save npm install cp -v ./node_modules/hexo-theme-type/_config_test.yml ./_config.type.yml 随后,修改 Hexo 根目录的「站点配置文件」 theme: type 「主题配置文件」即为站点目录下的 _config.type.yml 文件。 随后,根据 配置主题 的指引,编辑主题配置文件。"},{"title":"主题设置","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"/type/theme-settings/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/theme-settings/index.html","excerpt":"","text":"主题设定 设置「图标」 # --------------------------------------------------------------- # ICON Settings 图标设置 # --------------------------------------------------------------- favicon: avatar: apple_icon: # iPhone 57x57 iphone: # iPad 72x72 ipad: # Retina iPhone 114x114 iphone_hd: # Retina iPad 144x144 ipad_hd: 编辑「主题配置文件」中的图标设置部分 favicon: 浏览器标签页的小图标 avatar: 首页、文章封面处的头像 apple_icon: 负责苹果不同尺寸设备上的图标 设置「样式」 # --------------------------------------------------------------- # Style Settings 样式设置 # --------------------------------------------------------------- # Schemes # Use column | m3 schemes: m3 # Fonts # Use LXGW | fonts: LXGW # Random Pictures random_pic_switch: false random_pics: 19 random_thumbnail: https://cdn.jsdelivr.net/gh/photup/hexo-theme-type-random_pics@v1.0.0/randompic- # random_thumbnail: ../img/random/randompic- schemes: Type 主题目前提供 column、m3 两种样式,可以根据您的喜好进行选择,将所选的样式名称填入 schemes 设置项即可。 fonts: Type 主题内置有霞鹜文楷字体,在 fonts 设置项填入 LXGW 即可启用全局霞鹜文楷字体。 Type 主题提供文章随机封面图的功能,启用该功能后,没有设置 cover 项目的文章会在首页启用随机封面图,但是注意文章内页并不会启用。 随机封面图有两个来源,一是主题文件内置的本地文件,二是由 jsdelivr 提供的在线文件。您也可以自定义随机封面图。 random_pic_switch: 布尔值,开启或关闭随机封面图功能 random_pics: 随机封面图的数量 random_thumbnail: 随机封面图地址"},{"title":"独立页面","date":"2022-11-11T00:00:00.000Z","updated":"2025-02-07T12:31:35.086Z","comments":true,"path":"/type/single_pages/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/single_pages/index.html","excerpt":"","text":""}],"posts":[{"title":"照片集","slug":"index","date":"2025-02-07T12:31:35.085Z","updated":"2025-02-07T12:31:35.085Z","comments":true,"path":"2025/undefined/","link":"","permalink":"https://xiaolin2004.github.io/gallery/2025/undefined/","excerpt":"","text":"","categories":[],"tags":[]}],"categories":[],"tags":[]} \ No newline at end of file +{"meta":{"title":"照片集","subtitle":"Take Photo Think Seriously","description":"拿起相机,认真思考","author":"DonkeyKane","url":"https://xiaolin2004.github.io/gallery","root":"/gallery/"},"pages":[{"title":"编辑器","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"editor.html","permalink":"https://xiaolin2004.github.io/gallery/editor.html","excerpt":"","text":""},{"title":"GridAll","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"grid-all.html","permalink":"https://xiaolin2004.github.io/gallery/grid-all.html","excerpt":"","text":""},{"title":"Grid","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"grid.html","permalink":"https://xiaolin2004.github.io/gallery/grid.html","excerpt":"","text":""},{"title":"Map-照片集","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"location.html","permalink":"https://xiaolin2004.github.io/gallery/location.html","excerpt":"","text":""},{"title":"","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"manifest.json","permalink":"https://xiaolin2004.github.io/gallery/manifest.json","excerpt":"","text":"{\"name\":\"Gallery\",\"short_name\":\"Gallery\",\"start_url\":\".\",\"display\":\"standalone\",\"icons\":[{\"sizes\":\"144x144\",\"type\":\"image/png\"}],\"lang\":\"zh-CN\",\"background_color\":\"#ffffff\"}"},{"title":"Photo","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"photo.html","permalink":"https://xiaolin2004.github.io/gallery/photo.html","excerpt":"","text":""},{"title":"数据查询","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"query.html","permalink":"https://xiaolin2004.github.io/gallery/query.html","excerpt":"","text":""},{"title":"查询用例","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"queryphase.html","permalink":"https://xiaolin2004.github.io/gallery/queryphase.html","excerpt":"","text":"Group all image maker SELECT IFNULL(EXIFData.maker, 'NONE') AS maker, COUNT(*) AS count FROM Photo LEFT OUTER JOIN EXIFData ON Photo.exif_data_id = EXIFData.id GROUP BY maker ORDER BY maker TRY IT Group by focal length and order by count. SELECT EXIFData.focal_length, COUNT(*) AS count FROM Photo LEFT OUTER JOIN EXIFData ON Photo.exif_data_id = EXIFData.id WHERE Photo.exif_data_id IS NOT NULL OR Photo.exif <> '' GROUP BY EXIFData.focal_length ORDER BY CAST(EXIFData.focal_length as DOUBLE) DESC TRY IT Give me random 5 fujifilm picture SELECT photo.*, exifdata.maker FROM photo LEFT OUTER JOIN exifdata ON photo.exif_data_id = exifdata.id WHERE photo.location_id NOT NULL AND exifdata.maker = 'FUJIFILM' ORDER BY RANDOM() LIMIT 5; TRY IT Get N group by F Number SELECT id, path, name, desc, f_number, lo, hi FROM ( SELECT p.id, p.path, p.name, p.desc, e.f_number, l.lo, l.hi, ROW_NUMBER() OVER (PARTITION BY e.f_number ORDER BY p.id) AS row_num FROM photo p JOIN exifdata e ON p.exif_data_id = e.id LEFT JOIN location l ON p.location_id = l.id ) subquery WHERE row_num <= 10; TRY IT Group by country SELECT country, COUNT(*) as count FROM location GROUP BY country TRY IT"},{"title":"随机照片","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"random.html","permalink":"https://xiaolin2004.github.io/gallery/random.html","excerpt":"","text":""},{"title":"Gallery","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"rss.html","permalink":"https://xiaolin2004.github.io/gallery/rss.html","excerpt":"","text":""},{"title":"状态监控","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"status.html","permalink":"https://xiaolin2004.github.io/gallery/status.html","excerpt":"","text":""},{"title":"年终总结","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"summary.html","permalink":"https://xiaolin2004.github.io/gallery/summary.html","excerpt":"","text":""},{"title":"Tags","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"tags.html","permalink":"https://xiaolin2004.github.io/gallery/tags.html","excerpt":"","text":""},{"title":"照片集","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"gallery/index.html","permalink":"https://xiaolin2004.github.io/gallery/gallery/index.html","excerpt":"","text":""},{"title":"上野莫奈特展","date":"2025-01-07T00:00:00.000Z","updated":"2025-02-08T12:29:14.306Z","comments":true,"path":"Monet.html","permalink":"https://xiaolin2004.github.io/gallery/Monet.html","excerpt":"","text":""},{"title":"上野浅草寺","date":"2025-01-07T00:00:00.000Z","updated":"2025-02-08T12:29:14.516Z","comments":true,"path":"Asakusa.html","permalink":"https://xiaolin2004.github.io/gallery/Asakusa.html","excerpt":"","text":""},{"title":"河口湖","date":"2025-01-02T00:00:00.000Z","updated":"2025-02-08T12:29:15.661Z","comments":true,"path":"Kawaguchiko.html","permalink":"https://xiaolin2004.github.io/gallery/Kawaguchiko.html","excerpt":"","text":""},{"title":"银阁寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-08T12:29:15.751Z","comments":true,"path":"Ginkaku-ji.html","permalink":"https://xiaolin2004.github.io/gallery/Ginkaku-ji.html","excerpt":"","text":""},{"title":"鸭川","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-08T12:29:15.846Z","comments":true,"path":"Kamomioya-jinja.html","permalink":"https://xiaolin2004.github.io/gallery/Kamomioya-jinja.html","excerpt":"","text":""},{"title":"京都龙安寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-08T12:29:16.148Z","comments":true,"path":"Ryoanji.html","permalink":"https://xiaolin2004.github.io/gallery/Ryoanji.html","excerpt":"","text":""},{"title":"京都鹿苑寺","date":"2025-01-01T00:00:00.000Z","updated":"2025-02-08T12:29:16.212Z","comments":true,"path":"Rokuonji.html","permalink":"https://xiaolin2004.github.io/gallery/Rokuonji.html","excerpt":"","text":""},{"title":"广州动物园","date":"2024-12-08T00:00:00.000Z","updated":"2025-02-08T12:29:16.766Z","comments":true,"path":"GuangzhouZoo.html","permalink":"https://xiaolin2004.github.io/gallery/GuangzhouZoo.html","excerpt":"","text":""},{"title":"海珠湿地","date":"2024-10-19T00:00:00.000Z","updated":"2025-02-08T12:29:16.780Z","comments":true,"path":"Haizhu_wetland.html","permalink":"https://xiaolin2004.github.io/gallery/Haizhu_wetland.html","excerpt":"","text":""},{"title":"杭州飞来峰","date":"2024-01-23T00:00:00.000Z","updated":"2025-02-08T12:29:17.156Z","comments":true,"path":"Hangzhou.html","permalink":"https://xiaolin2004.github.io/gallery/Hangzhou.html","excerpt":"","text":""},{"title":"杭州西湖","date":"2024-01-23T00:00:00.000Z","updated":"2025-02-08T12:29:17.603Z","comments":true,"path":"HangzhouWestLake.html","permalink":"https://xiaolin2004.github.io/gallery/HangzhouWestLake.html","excerpt":"","text":""},{"title":"上海","date":"2024-01-22T00:00:00.000Z","updated":"2025-02-08T12:29:18.047Z","comments":true,"path":"Shanghai.html","permalink":"https://xiaolin2004.github.io/gallery/Shanghai.html","excerpt":"","text":""},{"title":"东京塔","date":"2025-01-06T00:00:00.000Z","updated":"2025-02-08T12:29:14.537Z","comments":true,"path":"Tokyo_Tower.html","permalink":"https://xiaolin2004.github.io/gallery/Tokyo_Tower.html","excerpt":"","text":""},{"title":"东京皇居","date":"2025-01-06T00:00:00.000Z","updated":"2025-02-08T12:29:14.662Z","comments":true,"path":"Imperial-Palace.html","permalink":"https://xiaolin2004.github.io/gallery/Imperial-Palace.html","excerpt":"","text":""},{"title":"鶴岡八幡宮","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-08T12:29:14.684Z","comments":true,"path":"Tsurugaoka_Hachimangu.html","permalink":"https://xiaolin2004.github.io/gallery/Tsurugaoka_Hachimangu.html","excerpt":"","text":""},{"title":"建长寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-08T12:29:14.820Z","comments":true,"path":"KAMAKURA.html","permalink":"https://xiaolin2004.github.io/gallery/KAMAKURA.html","excerpt":"","text":""},{"title":"円覚寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-08T12:29:14.966Z","comments":true,"path":"Yuen_Kwok_Buddhist_Temple.html","permalink":"https://xiaolin2004.github.io/gallery/Yuen_Kwok_Buddhist_Temple.html","excerpt":"","text":""},{"title":"佐助稻荷","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-08T12:29:15.063Z","comments":true,"path":"Sasuke_Inari_Shrine.html","permalink":"https://xiaolin2004.github.io/gallery/Sasuke_Inari_Shrine.html","excerpt":"","text":""},{"title":"长谷寺","date":"2025-01-04T00:00:00.000Z","updated":"2025-02-08T12:29:15.271Z","comments":true,"path":"Hasedera_Temple.html","permalink":"https://xiaolin2004.github.io/gallery/Hasedera_Temple.html","excerpt":"","text":""},{"title":"江之岛","date":"2025-01-03T00:00:00.000Z","updated":"2025-02-08T12:29:15.391Z","comments":true,"path":"Enoshima.html","permalink":"https://xiaolin2004.github.io/gallery/Enoshima.html","excerpt":"","text":""},{"title":"搜索","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"search/index.html","permalink":"https://xiaolin2004.github.io/gallery/search/index.html","excerpt":"","text":""},{"title":"Hexo-Theme-Type 文档","date":"2025-02-08T12:28:52.123Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"/type/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/index.html","excerpt":"","text":"简介 Type 是一个简洁、美观并且力求快速的 Hexo 主题,能以较好的样式展示文字和图片,并且对移动端、夜间模式做了一些优化。希望 Type 能 在 Hexo 上承载您的文字、影像作品。 主题仍在开发中,最新开发进展请看:aiokr/Hexo-Theme-Type at dev 文档目录 快速开始 主题设置","author":"aiokr"},{"title":"快速开始","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"/type/getstart/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/getstart/index.html","excerpt":"","text":"快速开始 要使用 Type,必须首先安装 Hexo。你可以访问 Hexo 的文档来了解如何安装 Hexo hexo.io/zh-cn/。 Hexo 中有两份配置文件,分别为站点目录下的 _config.yml 和 主题目录下的 _config.yml,后文将前者称为「站点配置文件」,后者称之为「主题配置文件」。 本主题支持 npm 和 git 两种安装方式,你也可以下载 release 版本手动安装。 使用 npm 安装主题 进入 Hexo 根目录,依次执行以下命令。 npm install hexo-theme-type --save npm install cp -v ./node_modules/hexo-theme-type/_config_test.yml ./_config.type.yml 随后,修改 Hexo 根目录的「站点配置文件」 theme: type 「主题配置文件」即为站点目录下的 _config.type.yml 文件。 随后,根据 配置主题 的指引,编辑主题配置文件。"},{"title":"主题设置","date":"2022-04-19T00:00:00.000Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"/type/theme-settings/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/theme-settings/index.html","excerpt":"","text":"主题设定 设置「图标」 # --------------------------------------------------------------- # ICON Settings 图标设置 # --------------------------------------------------------------- favicon: avatar: apple_icon: # iPhone 57x57 iphone: # iPad 72x72 ipad: # Retina iPhone 114x114 iphone_hd: # Retina iPad 144x144 ipad_hd: 编辑「主题配置文件」中的图标设置部分 favicon: 浏览器标签页的小图标 avatar: 首页、文章封面处的头像 apple_icon: 负责苹果不同尺寸设备上的图标 设置「样式」 # --------------------------------------------------------------- # Style Settings 样式设置 # --------------------------------------------------------------- # Schemes # Use column | m3 schemes: m3 # Fonts # Use LXGW | fonts: LXGW # Random Pictures random_pic_switch: false random_pics: 19 random_thumbnail: https://cdn.jsdelivr.net/gh/photup/hexo-theme-type-random_pics@v1.0.0/randompic- # random_thumbnail: ../img/random/randompic- schemes: Type 主题目前提供 column、m3 两种样式,可以根据您的喜好进行选择,将所选的样式名称填入 schemes 设置项即可。 fonts: Type 主题内置有霞鹜文楷字体,在 fonts 设置项填入 LXGW 即可启用全局霞鹜文楷字体。 Type 主题提供文章随机封面图的功能,启用该功能后,没有设置 cover 项目的文章会在首页启用随机封面图,但是注意文章内页并不会启用。 随机封面图有两个来源,一是主题文件内置的本地文件,二是由 jsdelivr 提供的在线文件。您也可以自定义随机封面图。 random_pic_switch: 布尔值,开启或关闭随机封面图功能 random_pics: 随机封面图的数量 random_thumbnail: 随机封面图地址"},{"title":"独立页面","date":"2022-11-11T00:00:00.000Z","updated":"2025-02-08T12:28:52.123Z","comments":true,"path":"/type/single_pages/index.html","permalink":"https://xiaolin2004.github.io/gallery/type/single_pages/index.html","excerpt":"","text":""}],"posts":[{"title":"照片集","slug":"index","date":"2025-02-08T12:28:52.122Z","updated":"2025-02-08T12:28:52.122Z","comments":true,"path":"2025/undefined/","link":"","permalink":"https://xiaolin2004.github.io/gallery/2025/undefined/","excerpt":"","text":"","categories":[],"tags":[]}],"categories":[],"tags":[]} \ No newline at end of file diff --git a/rss.html b/rss.html index c20b9fe..14a7b94 100644 --- a/rss.html +++ b/rss.html @@ -11,7 +11,7 @@ 41784388753060864 - Fri, 07 Feb 2025 12:32:10 GMT + Sat, 08 Feb 2025 12:29:29 GMT 拿起相机,认真思考 @@ -46,20 +46,6 @@ - - 银阁寺 - - https://xiaolin2004.github.io/gallery/Ginkaku-ji - https://xiaolin2004.github.io/gallery/Ginkaku-ji - Wed, 01 Jan 2025 00:00:00 - Wed, 01 Jan 2025 00:00:00 - - - ]]> - - - 河口湖 @@ -74,6 +60,20 @@ + + 银阁寺 + + https://xiaolin2004.github.io/gallery/Ginkaku-ji + https://xiaolin2004.github.io/gallery/Ginkaku-ji + Wed, 01 Jan 2025 00:00:00 + Wed, 01 Jan 2025 00:00:00 + + + ]]> + + + 鸭川 @@ -116,20 +116,6 @@ - - 海珠湿地 - - https://xiaolin2004.github.io/gallery/Haizhu_wetland - https://xiaolin2004.github.io/gallery/Haizhu_wetland - Sat, 19 Oct 2024 00:00:00 - Sat, 19 Oct 2024 00:00:00 - - - ]]> - - - 广州动物园 @@ -144,6 +130,20 @@ + + 海珠湿地 + + https://xiaolin2004.github.io/gallery/Haizhu_wetland + https://xiaolin2004.github.io/gallery/Haizhu_wetland + Sat, 19 Oct 2024 00:00:00 + Sat, 19 Oct 2024 00:00:00 + + + ]]> + + + 杭州飞来峰 @@ -172,20 +172,6 @@ - - 东京塔 - - https://xiaolin2004.github.io/gallery/Tokyo_Tower - https://xiaolin2004.github.io/gallery/Tokyo_Tower - Mon, 06 Jan 2025 00:00:00 - Mon, 06 Jan 2025 00:00:00 - - - ]]> - - - 上海 @@ -200,6 +186,20 @@ + + 东京塔 + + https://xiaolin2004.github.io/gallery/Tokyo_Tower + https://xiaolin2004.github.io/gallery/Tokyo_Tower + Mon, 06 Jan 2025 00:00:00 + Mon, 06 Jan 2025 00:00:00 + + + ]]> + + + 东京皇居 diff --git a/sqlite.db b/sqlite.db index 15b009d..28f489f 100644 Binary files a/sqlite.db and b/sqlite.db differ