diff --git a/ZH-TW/index.html b/ZH-TW/index.html index 10e13bc..a9cf607 100644 --- a/ZH-TW/index.html +++ b/ZH-TW/index.html @@ -52,8 +52,6 @@ - - @@ -1476,6 +1474,8 @@ + + @@ -1521,6 +1521,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/about/assets/stylesheets/portfolio.css b/about/assets/stylesheets/portfolio.css new file mode 100644 index 0000000..b554679 --- /dev/null +++ b/about/assets/stylesheets/portfolio.css @@ -0,0 +1,577 @@ +:root { + --header-height: 3rem; + + /*========== Colors ==========*/ + --first-color: #608DBD; + --first-color-second: #608DBD; + --first-color-alt: #608DBD; + --first-color-lighter: #608DBD; + + --title-color: #608DBD; + --text-color: #080505; + --text-color-light: #f5ab17; + + --input-color: #F5EEE3; + --body-color: #FDFBF8; + --container-color: #FFFFFF; + + /*========== Font and typography ==========*/ + --big-font-size: 2rem; + --h1-font-size: 1.5rem; + --h2-font-size: 1.25rem; + --h3-font-size: 1.125rem; + --normal-font-size: .938rem; + --small-font-size: .813rem; + --smaller-font-size: .75rem; + + /*========== Font weight ==========*/ + --font-medium: 500; + --font-semi-bold: 600; + + /*========== Margenes Bottom ==========*/ + --mb-0-25: .25rem; + --mb-0-5: .5rem; + --mb-0-75: .75rem; + --mb-1: 1rem; + --mb-1-5: 1.5rem; + --mb-2: 2rem; + --mb-2-5: 2.5rem; + --mb-3: 3rem; + + /*========== z index ==========*/ + --z-tooltip: 10; + --z-fixed: 100; + --z-modal: 1000; +} + +/* Font size for large devices */ +@media screen and (min-width: 968px) { + :root { + --big-font-size: 3rem; + --h1-font-size: 2.25rem; + --h2-font-size: 1.5rem; + --h3-font-size: 1.25rem; + --normal-font-size: 1rem; + --small-font-size: .875rem; + --smaller-font-size: .813rem; + } +} + +/*==================== BASE ====================*/ +* { + box-sizing: border-box; + padding: 0; + margin: 0; +} + +html { + scroll-behavior: smooth; +} + +h1, h2, h3, h4 { + color: var(--title-color); + font-weight: var(--font-semi-bold); +} + +/*==================== REUSABLE CSS CLASSES ====================*/ +.section__title { + font-size: var(--h1-font-size); + color: var(--title-color); +} + +.section__subtitle { + display: block; + font-size: var(--small-font-size); + margin-bottom: var(--mb-3); +} + +.section__title, +.section__subtitle { + text-align: center; +} + +/*==================== LAYOUT ====================*/ +.container { + max-width: 768px; + margin-left: var(--mb-1-5); + margin-right: var(--mb-1-5); +} + +.grid { + display: grid; + gap: 1.5rem; +} + +.header { + width: 100%; + position: fixed; + bottom: 0; + left: 0; + z-index: var(--z-fixed); + background-color: var(--body-color); +} + +/*==================== HOME ====================*/ +.home__container { + gap: 1rem; +} + +.home__content{ + grid-template-columns: .5fr 3fr; + padding-top: 3.5rem; + align-items: center; +} + +.home__social{ + grid-template-columns: max-content; + row-gap: 1rem; +} + +.home__social-icon{ + font-size: 1.25rem; +} + +.home__social-icon:hover { + color: var(--first-color-alt); +} + +.home__title{ + font-size: var(--big-font-size); +} + +.home__subtitle{ + margin-bottom: var(--h3-font-size); + color: var(--text-color); + font-weight: var(--font-medium); + margin-bottom: var(--mb-0-75); +} + +.home__description{ + margin-bottom: var(--mb-2); +} + +/*==================== BUTTONS ====================*/ +.button{ + display: inline-block; + background-color: var(--first-color-alt); + color: #fff; + padding: 1rem; + border-radius: .5rem; + font-weight: var(--font-medium); +} + +.button:hover { + background-color: var(--first-color-alt); +} + +.button__icon{ + font-size: 1.25rem; + margin-right: var(--mb-0-5); + transition: .3s; + color: #FFF; +} + +.button--flex{ + display: inline-flex; + align-items: center; +} + +.button--small{ + padding: .75rem 1rem; +} + +.button--link{ + padding: 0; + background-color: transparent; + color: var(--first-color); +} + +.button--link:hover { + background-color: transparent; + color: var(--first-color-alt); +} + +/*==================== ABOUT ====================*/ +.about__img{ + width: 400px; + border-radius: .5rem; + justify-self: center; + align-self: center; +} + +.about__description{ + text-align: center; + margin-bottom: var(--mb-2-5); +} + +.about__info{ + display: flex; + justify-content: space-evenly; + margin-bottom: var(--mb-2-5); +} + +.about__info-title{ + font-size: var(--h2-font-size); + font-weight: var(--font-semi-bold); + color: var(--title-color); +} + +.about__info-name{ + font-size: var(--smaller-font-size); +} + +.about__info-title, +.about__info-name{ + display: block; + text-align: center; +} + +.about__buttons{ + margin: 0 auto; + display: flex; + justify-content: center; + align-items: center; +} + +/*==================== SKILLS ====================*/ +.skills__container{ + row-gap: 0; +} + +.skills__header{ + display: flex; + align-items: center; + margin-bottom: var(--mb-2-5); + cursor: pointer; +} + +.skills__icon, +.skills__arrow{ + font-size: 2rem; + color: var(--md-primary-fg-color); +} + +.skills__icon{ + margin-right: var(--mb-0-75); +} + +.skills__title{ + font-size: var(--h3-font-size); +} + +.skills_subtitle{ + font-size: var(--small-font-size); + color: var(--text-color-light); +} + +.skills__arrow{ + margin-left: auto; + transition: .4s; +} + +.skills__list{ + row-gap: 1.5rem; + padding-left: 2.7rem; +} + +.skills__titles{ + display: flex; + justify-content: space-between; + margin-bottom: var(--mb-0-5); +} + +.skills__name{ + font-size: var(--normal-font-size); + font-weight: var(--font-medium); +} + +.skills__number{ + margin-top: var(--mb-2-5); +} + +.skills__bar, +.skills__percentage{ + height: 5px; + border-radius: .25rem; +} + +.skills__bar{ + background-color: var(--first-color-lighter); +} + +.skills__percentage{ + display: block; + background-color: var(--first-color); +} + +.skills__fastapi{ + width: 90%; +} + +.skills__django{ + width: 85%; +} + +.skills__flask{ + width: 75%; +} + +.skills__spring{ + width: 75%; +} + +.skills__androidjava{ + width: 70%; +} + +.skills__androidkotlin{ + width: 60%; +} + +.skills__flutter{ + width: 60%; +} + +.skills__aws{ + width: 80%; +} + +.skills__azure{ + width: 75%; +} + +.skills__oc{ + width: 70%; +} + +.skills__cicd{ + width: 75%; +} + +.skills__close .skills__list{ + height: 0; + overflow: hidden; +} + +.skills__open .skills__list{ + height: max-content; + margin-bottom: var(--mb-2-5); +} + +.skills__open .skills__arrow{ + transform: rotate(-180deg); +} + +/*==================== QUALIFICATION ====================*/ +.qualification__tabs{ + display: flex; + justify-content: space-evenly; + margin-bottom: var(--mb-2); +} + +.qualification__button{ + font-size: var(--h3-font-size); + font-weight: var(--font-medium); + cursor: pointer; +} + +.qualification__button:hover { + color: var(--first-color); +} + +.qualification__icon{ + font-size: 1.8rem; + margin-right: var(--mb-0-25); +} + +.qualification__data{ + display: grid; + grid-template-columns: 1.5fr max-content 1.5fr; + column-gap: 1.5rem; +} + +.qualification__title{ + font-size: var(--normal-font-size); + font-weight: var(--font-medium); +} + +.qualification__subtitle{ + display: inline-block; + font-size: var(--smaller-font-size); + margin-bottom: var(--mb-1); +} + +.qualification__calendar{ + font-size: var(--smaller-font-size); + color: var(--md-primary-fg-color--dark); +} + +.qualification__rounder{ + display: inline-block; + width: 13px; + height: 13px; + background-color: var(--md-primary-fg-color); + border-radius: 50%; +} + +.qualification__line{ + display: block; + width: 1px; + height: 100%; + background-color: var(--md-primary-fg-color); + transform: translate(6px, -7px); +} + +.qualification [data-content]{ + display: none; +} + +.qualification__active[data-content]{ + display: block; +} + +.qualification__button.qualification__active{ + color: var(--first-color); +} + +/*==================== MEDIA QUERIES ====================*/ +/* For small devices */ +@media screen and (max-width: 350px){ + .container{ + margin-left: var(--mb-1); + margin-right: var(--mb-1); + } + + .home__content{ + grid-template-columns: .25fr 3fr; + } + .home__blob{ + width: 180px; + } + + .skills__title{ + font-size: var(--normal-font-size); + } + + .qualification__data{ + gap: .5rem; + } +} + +/* For medium devices */ +@media screen and (min-width: 568px){ + .home__content{ + grid-template-columns: max-content 1fr 1fr; + } + .home__data{ + grid-column: initial; + } + .home__img{ + order: 1; + justify-self: center; + } + + .skills__container, + .about__container, + .portfolio__content, + .project__container{ + grid-template-columns: repeat(2, 1fr); + } + + .qualification__sections{ + display: grid; + grid-template-columns: 6fr; + justify-content: center; + } +} + +@media screen and (min-width: 768px){ + .container{ + margin-left: auto; + margin-right: auto; + } + + body{ + margin: 0; + } + + .section{ + padding: 6rem 0 2rem; + } + .section__subtitle{ + margin-bottom: 4rem; + } + + .header{ + top: 0; + bottom: initial; + } + + .header, + .main{ + padding: 0 1rem; + } + + .home__container{ + row-gap: 5rem; + } + .home__content{ + padding-top: 5.5rem; + column-gap: 2rem; + } + .home__blob{ + width: 270px; + } + .home__scroll{ + display: block; + } + .home__scroll-button{ + margin-left: 3rem; + } + + .about__container{ + column-gap: 5rem; + } + .about__img{ + width: 350px; + } + .about__description{ + text-align: initial; + } + .about__info{ + justify-content: space-between; + } + .about__buttons{ + justify-content: initial; + } + + .qualification__tabs{ + justify-content: center; + } + .qualification__button{ + margin: 0 var(--mb-1); + } + .qualification__sections{ + grid-template-columns: .5fr; + } +} + +/* For large devices */ +@media screen and (min-width: 1024px){ + .header, + .main{ + padding: 0; + } + + .home__blob{ + width: 320px; + } + .home__social{ + transform: translateX(-6rem); + } + .qualification__sections{ + display: grid; + grid-template-columns: 6fr; + justify-content: center; + } +} \ No newline at end of file diff --git a/about/geren/index.html b/about/geren/index.html index 1f33d7b..9a3189e 100644 --- a/about/geren/index.html +++ b/about/geren/index.html @@ -56,8 +56,6 @@ - - @@ -1482,6 +1480,8 @@ + + @@ -1527,6 +1527,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -1922,7 +1945,7 @@
  • - 联系我 + 关于我 @@ -1931,7 +1954,7 @@
  • - 个人简历 + 个人履历 @@ -1940,7 +1963,7 @@
  • - 个人技能 + 联系我 @@ -1948,15 +1971,6 @@
  • - - 个人荣誉 - - - -
  • - -
  • - 须知 @@ -2052,7 +2066,7 @@
  • - 联系我 + 关于我 @@ -2061,7 +2075,7 @@
  • - 个人简历 + 个人履历 @@ -2070,7 +2084,7 @@
  • - 个人技能 + 联系我 @@ -2078,15 +2092,6 @@
  • - - 个人荣誉 - - - -
  • - -
  • - 须知 @@ -2125,30 +2130,147 @@ -

    - -

    +

    + +

    今日诗词

    - +

    关于我

    + +

    + arv-anshul + +

    A college student in Chongqing

    + + + + + + + +
    +
    +
    +
    +

    +
    +
    + 01+ + 工作经验 +
    +
    + 03+ + 已经完成的项目 +
    +
    + 02+ + 贡献的开源 +
    +
    +
    + + +

    下载简历

    +
    +

    个人履历

    + + + +
    + +
    +
    +
    + + 来时路 +
    + +
    +
    + +
    + +
    +
    +

    漯河高中

    + 平凡的三年 +
    + + 2018 - 2021 +
    +
    +
    + + +
    +
    + +
    +
    +
    + + +
    +
    +

    CTBU

    + 电子信息工程专业学士 +
    + + 2021 - 2024 +
    +
    +
    + +
    +
    +

    西安电子科技大学(待定)

    + 网络空间安全专业硕士研究生 +
    + + 2024 - 2027 +
    +
    +
    + + +
    +
    +
    + +
    +
    +
    + + +
    +
    +

    未完待续

    + 在路上,永远热泪盈眶 +
    + + Before - After +
    +
    +
    +
    +
    + + -

    - arv-anshul -

    -

    Wcowin

    -

    A college student in Chongqing

    +
    + +

    𝘿𝙤𝙣'𝙩 𝙘𝙖𝙧𝙚 𝙖𝙗𝙤𝙪𝙩 𝙬𝙤𝙧𝙡𝙙𝙡𝙮 𝙚𝙮𝙚𝙨 𝙩𝙤 𝙥𝙪𝙧𝙨𝙪𝙚 𝙮𝙤𝙪𝙧 𝙤𝙬𝙣 𝙡𝙞𝙜𝙝𝙩

    - + + +

    About me

    @@ -2161,53 +2283,57 @@

    -

    联系我

    -

    - -

    +

    联系我

    +

    +

    +
    我的名片
    + padding: 2px;">我的Wechat

    -
    -

    Image title -

    +

    +

    + +
    我的TG
    +

    +

    +
    +公众号 +

    +Image title
    公众号
    -
    -

    个人简历

    -

    个人简历(在线)

    -

    个人技能

    -

    本人擅长 Ai、Fw、Fl、Br、Ae、Pr、Id、Ps 等软件的安装与卸载。
    -精通 CSS、JavaScript、PHP、ASP、C、C++、C#、Java、Ruby、Perl、Lisp、Python、Objective-C、ActionScript、Pascal 等单词的拼写。
    -熟悉 Windows、Linux、OS X、Android、iOS、WP8 、harmony、hyper等系统的开关机。

    -

    个人荣誉

    -

    IMG_9007.jpeg

    -

    - +

    + + + + + + + +

    须知

    如果你在浏览博客的过程中发现了任何问题,欢迎前往 GitHub 的代码仓库提交 Issues 或直接修改相关文件后提交 Pull Requests。如果你有其他事情想要咨询,可以通过下方按钮使用邮件联系我,请不要滥用博客的评论功能发表与主题无关言论。

    Note

    如果给我发邮件,或者通过右下角微信添加好友,请写上您的真名实姓。对于那些不知来路、上来就问问题的微信和邮件,我通常会直接忽略,谢谢。

    Send Email

    - - diff --git a/about/link/index.html b/about/link/index.html index 267dc67..308a305 100644 --- a/about/link/index.html +++ b/about/link/index.html @@ -56,8 +56,6 @@ - - @@ -1482,6 +1480,8 @@ + + @@ -1527,6 +1527,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2016,7 +2039,7 @@ t.parentNode.insertBefore(e,t)}})();
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2163,7 +2186,7 @@ and running in minutes

    2 3 4 -5
    def bubble_sort(items):
    +5
    def bubble_sort(items):
         for i in range(len(items)):
             for j in range(len(items) - 1 - i):
                 if items[j] > items[j + 1]:
    @@ -2280,7 +2303,7 @@ purus auctor massa, nec semper lorem quam in massa.

    2 3 4 -5
    def bubble_sort(items):
    +5
    def bubble_sort(items):
         for i in range(len(items)):
             for j in range(len(items) - 1 - i):
                 if items[j] > items[j + 1]:
    @@ -2290,7 +2313,7 @@ purus auctor massa, nec semper lorem quam in massa.

    2 3 4 -5
    def bubble_sort(items):
    +5
    def bubble_sort(items):
         for i in range(len(items)):
             for j in range(len(items) - 1 - i):
                 if items[j] > items[j + 1]:
    diff --git a/about/个人简历.pdf b/about/个人简历.pdf
    new file mode 100644
    index 0000000..1dda51d
    Binary files /dev/null and b/about/个人简历.pdf differ
    diff --git a/assets/1111.png b/assets/1111.png
    deleted file mode 100644
    index 11babd7..0000000
    Binary files a/assets/1111.png and /dev/null differ
    diff --git a/assets/favicon.png b/assets/favicon.png
    deleted file mode 100644
    index 6771c11..0000000
    Binary files a/assets/favicon.png and /dev/null differ
    diff --git a/assets/stylesheets/custom.00c04c01.min.css.map b/assets/stylesheets/custom.00c04c01.min.css.map
    deleted file mode 100644
    index f8a207b..0000000
    --- a/assets/stylesheets/custom.00c04c01.min.css.map
    +++ /dev/null
    @@ -1 +0,0 @@
    -{"version":3,"sources":["src/overrides/assets/stylesheets/custom/_typeset.scss","../../../../src/overrides/assets/stylesheets/custom.scss","src/templates/assets/stylesheets/utilities/_break.scss","src/overrides/assets/stylesheets/custom/layout/_banner.scss","src/overrides/assets/stylesheets/custom/layout/_hero.scss","src/overrides/assets/stylesheets/custom/layout/_iconsearch.scss","src/overrides/assets/stylesheets/custom/layout/_sponsorship.scss"],"names":[],"mappings":"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","file":"custom.css"}
    \ No newline at end of file
    diff --git a/blog/2021/12/18/博客文章测试/index.html b/blog/2021/12/18/博客文章测试/index.html
    index 4939fff..f87ca9a 100644
    --- a/blog/2021/12/18/博客文章测试/index.html
    +++ b/blog/2021/12/18/博客文章测试/index.html
    @@ -57,8 +57,6 @@
         
           
         
    -      
    -    
           
         
         
    @@ -1481,6 +1479,8 @@
           
             
           
    +        
    +      
             
           
         
    @@ -1529,6 +1529,29 @@
         
       
       
    +    
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -1978,7 +2001,7 @@
    - Wang Kewen + Wang Kewen diff --git a/blog/2022/06/06/2022网站更新记录/index.html b/blog/2022/06/06/2022网站更新记录/index.html index d1c324a..a290a4f 100644 --- a/blog/2022/06/06/2022网站更新记录/index.html +++ b/blog/2022/06/06/2022网站更新记录/index.html @@ -56,8 +56,6 @@ - - @@ -1485,6 +1483,8 @@ + + @@ -1533,6 +1533,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2017,7 +2040,7 @@
    - Wang Kewen + Wang Kewen diff --git a/blog/2023/12/21/2023网站更新记录/index.html b/blog/2023/12/21/2023网站更新记录/index.html index 29bfef8..b2f1530 100644 --- a/blog/2023/12/21/2023网站更新记录/index.html +++ b/blog/2023/12/21/2023网站更新记录/index.html @@ -56,8 +56,6 @@ - - @@ -1485,6 +1483,8 @@ + + @@ -1533,6 +1533,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2107,7 +2130,7 @@
    - Wang Kewen + Wang Kewen diff --git a/blog/2024/01/01/2024网站更新记录/index.html b/blog/2024/01/01/2024网站更新记录/index.html index c5118d7..6c7c662 100644 --- a/blog/2024/01/01/2024网站更新记录/index.html +++ b/blog/2024/01/01/2024网站更新记录/index.html @@ -16,6 +16,8 @@ + + @@ -54,8 +56,6 @@ - - @@ -1483,6 +1483,8 @@ + + @@ -1531,6 +1533,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2195,7 +2220,7 @@
    - Wang Kewen + Wang Kewen @@ -2814,6 +2839,26 @@ Look at this source + + + + diff --git a/blog/2025/01/01/2025网站更新记录/index.html b/blog/2025/01/01/2025网站更新记录/index.html new file mode 100644 index 0000000..0862a64 --- /dev/null +++ b/blog/2025/01/01/2025网站更新记录/index.html @@ -0,0 +1,2538 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 2025网站更新记录 - Mkdocs教程 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + 跳转至 + + +
    +
    + + + +
    + + + + +
    + + +
    + +
    + + + + + + + + + +
    +
    + + + + + + + + + + + +
    +
    +
    + + + +
    +
    +
    + + + +
    +
    +
    +
    + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + +

    2025-01-05

    +

      +
    • 优化网站流畅度(玄学)
    • +
    • 重写部分代码
    • +
    +

    2025-01-05

    +

      +
    • 优化网站流畅度(玄学)
    • +
    • 大幅提升性能,加载速度更快 + image
    • +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + +
    + + + +
    + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/Mkdocs/mkdocs1/index.html b/blog/Mkdocs/mkdocs1/index.html index d8eb8f4..92718e6 100644 --- a/blog/Mkdocs/mkdocs1/index.html +++ b/blog/Mkdocs/mkdocs1/index.html @@ -56,8 +56,6 @@ - - @@ -741,6 +739,15 @@ +
  • + +
  • + + + 四、参考资料 + + +
  • @@ -1554,6 +1561,8 @@ + + @@ -1599,6 +1608,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2047,6 +2079,15 @@ +
  • + +
  • + + + 四、参考资料 + + +
  • @@ -2095,10 +2136,11 @@

    Info

    -

    Material for MkDocs官方网站:MkDocs

    +

    Material for MkDocs官方网站: Material for MkDocs
    +MkDocs中文文档: MkDocs中文文档


    -

    有条件的话,推荐看下这个视频:
    +

    推荐看下这个视频:
    How to set up Material for MkDocs by @james-willett – 15m – Learn how to create and host a documentation site using Material for @@ -2106,7 +2148,7 @@ MkDocs on GitHub Pages in a step-by-step guide.


    一、准备工作

    1.下载Github Desktop

    -

    2.一个GitHub账号

    +

    2.有一个GitHub账号​​​​​​​(有手就行)


    二、Creating your site

    参考教程:

    @@ -2304,14 +2346,22 @@ MkDocs on GitHub Pages in a step-by-step guide.

    !!!重点
    去仓库的setings/pages选择下图示意的路径

    -

    等待一会网址就出来了

    +

    等待一会网址就出来了1

    你的网站网址就是:​

    https://你github的名字.github.io/
     因为我绑定了域名所以网址是:https://wcowin.work/
     
    img

    -

    下次谈谈网站的mkdocs.yml具体配置1

    +

    下次谈谈网站的mkdocs.yml具体配置

    +

    四、参考资料

    +
      +
    1. MkDocs官网
    2. +
    3. MkDocs中文文档
    4. +
    5. Material for MkDocs
    6. +
    7. Mkdocs 配置和使用
    8. +
    9. Deploy MkDocs
    10. +

      @@ -2387,7 +2437,7 @@ MkDocs on GitHub Pages in a step-by-step guide.

      - 2024-12-13 + 2025-01-06 diff --git a/blog/Mkdocs/mkdocs2/index.html b/blog/Mkdocs/mkdocs2/index.html index 9cda5c4..80ca445 100644 --- a/blog/Mkdocs/mkdocs2/index.html +++ b/blog/Mkdocs/mkdocs2/index.html @@ -56,8 +56,6 @@ - - @@ -1665,6 +1663,8 @@ + + @@ -1710,6 +1710,29 @@ +
    1. + + + + + 2025 + + + + +
    2. + + + + + + + + + + + +
    3. diff --git a/blog/Mkdocs/mkdocs3/index.html b/blog/Mkdocs/mkdocs3/index.html index a0128fa..8ca353d 100644 --- a/blog/Mkdocs/mkdocs3/index.html +++ b/blog/Mkdocs/mkdocs3/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
    4. + + + + + 2025 + + + + +
    5. + + + + + + + + + + + +
    6. diff --git a/blog/Mkdocs/mkdocsblog/index.html b/blog/Mkdocs/mkdocsblog/index.html index bbaaac8..18d8e77 100644 --- a/blog/Mkdocs/mkdocsblog/index.html +++ b/blog/Mkdocs/mkdocsblog/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
    7. + + + + + 2025 + + + + +
    8. + + + + + + + + + + + +
    9. diff --git a/blog/Mkdocs/mkfirst/index.html b/blog/Mkdocs/mkfirst/index.html index ef8eafe..8426b2b 100644 --- a/blog/Mkdocs/mkfirst/index.html +++ b/blog/Mkdocs/mkfirst/index.html @@ -54,8 +54,6 @@ - - @@ -1543,6 +1541,8 @@ + + @@ -1588,6 +1588,29 @@ +
    10. + + + + + 2025 + + + + +
    11. + + + + + + + + + + + +
    12. diff --git a/blog/archive/2021/index.html b/blog/archive/2021/index.html index 818505e..653fa0d 100644 --- a/blog/archive/2021/index.html +++ b/blog/archive/2021/index.html @@ -56,8 +56,6 @@ - - @@ -1484,6 +1482,8 @@ + + @@ -1531,6 +1531,29 @@ +
    13. + + + + + 2025 + + + + +
    14. + + + + + + + + + + + +
    15. @@ -1984,7 +2007,7 @@ diff --git a/blog/archive/2022/index.html b/blog/archive/2022/index.html index 080fa3a..4a09b7b 100644 --- a/blog/archive/2022/index.html +++ b/blog/archive/2022/index.html @@ -56,8 +56,6 @@ - - @@ -1484,6 +1482,8 @@ + + @@ -1531,6 +1531,29 @@ +
    16. + + + + + 2025 + + + + +
    17. + + + + + + + + + + + +
    18. @@ -1984,7 +2007,7 @@ diff --git a/blog/archive/2023/index.html b/blog/archive/2023/index.html index 316f903..34ce232 100644 --- a/blog/archive/2023/index.html +++ b/blog/archive/2023/index.html @@ -56,8 +56,6 @@ - - @@ -1484,6 +1482,8 @@ + + @@ -1531,6 +1531,29 @@ +
    19. + + + + + 2025 + + + + +
    20. + + + + + + + + + + + +
    21. @@ -1984,7 +2007,7 @@ diff --git a/blog/archive/2024/index.html b/blog/archive/2024/index.html index fa08ffc..012af17 100644 --- a/blog/archive/2024/index.html +++ b/blog/archive/2024/index.html @@ -13,7 +13,7 @@ - + @@ -56,8 +56,6 @@ - - @@ -1484,6 +1482,8 @@ + + @@ -1527,6 +1527,29 @@ + + + + +
    22. + + + + + 2025 + + + + +
    23. + + + + + + + + @@ -1984,7 +2007,7 @@ @@ -2299,9 +2322,9 @@ Look at this source
    diff --git a/blog/archive/2025/index.html b/blog/archive/2025/index.html new file mode 100644 index 0000000..997167c --- /dev/null +++ b/blog/archive/2025/index.html @@ -0,0 +1,2254 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + 2025 - Mkdocs教程 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + +
    + + + + +
    + + +
    + +
    + + + + + + + + + +
    +
    + + + +
    +
    +
    + + + + + + + +
    +
    +
    + + + +
    +
    +
    + + + +
    +
    +
    + + + +
    +
    +
    +

    2025

    +
    + +
    +
    + + + + +
    +
    +

    2025网站更新记录

    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 重写部分代码
    • +
    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 大幅提升性能,加载速度更快 + image
    • +
    + +
    +
    + + + + + + + + + + +
    +
    + + + + + +
    + + + +
    + + + + +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/blog/category/hello-world/index.html b/blog/category/hello-world/index.html index 19a0939..b22b2b1 100644 --- a/blog/category/hello-world/index.html +++ b/blog/category/hello-world/index.html @@ -56,8 +56,6 @@ - - @@ -1483,6 +1481,8 @@ + + @@ -1531,6 +1531,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -1984,7 +2007,7 @@ diff --git a/blog/category/网站更新记录/index.html b/blog/category/网站更新记录/index.html index e1c39b5..4835a48 100644 --- a/blog/category/网站更新记录/index.html +++ b/blog/category/网站更新记录/index.html @@ -16,7 +16,7 @@ - + @@ -56,8 +56,6 @@ - - @@ -1483,6 +1481,8 @@ + + @@ -1531,6 +1531,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -1984,7 +2007,57 @@ + + + +
    +

    2025网站更新记录

    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 重写部分代码
    • +
    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 大幅提升性能,加载速度更快 + image
    • +
    + +
    + + +
    +
    + + @@ -2260,7 +2333,7 @@ Look at this source - Wang Kewen + Wang Kewen @@ -2408,7 +2481,7 @@ Look at this source - Wang Kewen + Wang Kewen @@ -2526,16 +2599,16 @@ Look at this source
    +
    +

    2025网站更新记录

    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 重写部分代码
    • +
    +

    2025-01-05

    +
      +
    • 优化网站流畅度(玄学)
    • +
    • 大幅提升性能,加载速度更快 + image
    • +
    + +
    +
    + +
    +
    + + @@ -2250,7 +2323,7 @@ Look at this source - Wang Kewen + Wang Kewen @@ -2398,7 +2471,7 @@ Look at this source - Wang Kewen + Wang Kewen @@ -2453,7 +2526,7 @@ Look at this source - Wang Kewen + Wang Kewen diff --git a/blog/websitebeauty/404/index.html b/blog/websitebeauty/404/index.html index 3e973fe..0a09d5e 100644 --- a/blog/websitebeauty/404/index.html +++ b/blog/websitebeauty/404/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/backgroud/index.html b/blog/websitebeauty/backgroud/index.html index 08d954b..4cf83f8 100644 --- a/blog/websitebeauty/backgroud/index.html +++ b/blog/websitebeauty/backgroud/index.html @@ -56,8 +56,6 @@ - - @@ -1563,6 +1561,8 @@ + + @@ -1608,6 +1608,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/header/index.html b/blog/websitebeauty/header/index.html index 7308ccd..76504ff 100644 --- a/blog/websitebeauty/header/index.html +++ b/blog/websitebeauty/header/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/linktech/index.html b/blog/websitebeauty/linktech/index.html index 0a6f451..f471b04 100644 --- a/blog/websitebeauty/linktech/index.html +++ b/blog/websitebeauty/linktech/index.html @@ -56,8 +56,6 @@ - - @@ -1562,6 +1560,8 @@ + + @@ -1607,6 +1607,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/mkcomments/index.html b/blog/websitebeauty/mkcomments/index.html index 0d74a6c..7a1aaae 100644 --- a/blog/websitebeauty/mkcomments/index.html +++ b/blog/websitebeauty/mkcomments/index.html @@ -56,8 +56,6 @@ - - @@ -1572,6 +1570,8 @@ + + @@ -1617,6 +1617,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/mkdocsfont/index.html b/blog/websitebeauty/mkdocsfont/index.html index 969073a..979674f 100644 --- a/blog/websitebeauty/mkdocsfont/index.html +++ b/blog/websitebeauty/mkdocsfont/index.html @@ -56,8 +56,6 @@ - - @@ -1666,6 +1664,8 @@ + + @@ -1711,6 +1711,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/shubiao/index.html b/blog/websitebeauty/shubiao/index.html index 3674b6e..7c9fb0f 100644 --- a/blog/websitebeauty/shubiao/index.html +++ b/blog/websitebeauty/shubiao/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/time/index.html b/blog/websitebeauty/time/index.html index 728b762..f73942a 100644 --- a/blog/websitebeauty/time/index.html +++ b/blog/websitebeauty/time/index.html @@ -56,8 +56,6 @@ - - @@ -1554,6 +1552,8 @@ + + @@ -1599,6 +1599,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/webtalknow/index.html b/blog/websitebeauty/webtalknow/index.html index 8aa2cfa..bee81cf 100644 --- a/blog/websitebeauty/webtalknow/index.html +++ b/blog/websitebeauty/webtalknow/index.html @@ -56,8 +56,6 @@ - - @@ -1554,6 +1552,8 @@ + + @@ -1599,6 +1599,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/blog/websitebeauty/yuanjiaohua/index.html b/blog/websitebeauty/yuanjiaohua/index.html index 5ea52eb..0412d55 100644 --- a/blog/websitebeauty/yuanjiaohua/index.html +++ b/blog/websitebeauty/yuanjiaohua/index.html @@ -56,8 +56,6 @@ - - @@ -1563,6 +1561,8 @@ + + @@ -1608,6 +1608,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/Markdown/MWeb/index.html b/develop/Markdown/MWeb/index.html index 2cb4f87..97d01b9 100644 --- a/develop/Markdown/MWeb/index.html +++ b/develop/Markdown/MWeb/index.html @@ -56,8 +56,6 @@ - - @@ -1737,6 +1735,8 @@ + + @@ -1782,6 +1782,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/Markdown/markdown/index.html b/develop/Markdown/markdown/index.html index 4fbd7ab..8bcd26b 100644 --- a/develop/Markdown/markdown/index.html +++ b/develop/Markdown/markdown/index.html @@ -56,8 +56,6 @@ - - @@ -1846,6 +1844,8 @@ + + @@ -1891,6 +1891,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/designbeauty/db1/index.html b/develop/designbeauty/db1/index.html index 33fdc5b..1638df3 100644 --- a/develop/designbeauty/db1/index.html +++ b/develop/designbeauty/db1/index.html @@ -56,8 +56,6 @@ - - @@ -1576,6 +1574,8 @@ + + @@ -1621,6 +1621,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/designbeauty/my-to-desihn/index.html b/develop/designbeauty/my-to-desihn/index.html index 2e0fcc6..82867b3 100644 --- a/develop/designbeauty/my-to-desihn/index.html +++ b/develop/designbeauty/my-to-desihn/index.html @@ -56,8 +56,6 @@ - - @@ -1501,6 +1499,8 @@ + + @@ -1546,6 +1546,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/git/index.html b/develop/git/index.html index f6c018c..09ac190 100644 --- a/develop/git/index.html +++ b/develop/git/index.html @@ -56,8 +56,6 @@ - - @@ -1714,6 +1712,8 @@ + + @@ -1759,6 +1759,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/lighthouse/index.html b/develop/lighthouse/index.html index 61d0c89..97fd2b7 100644 --- a/develop/lighthouse/index.html +++ b/develop/lighthouse/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/develop/vercel/index.html b/develop/vercel/index.html index 7bf72cd..5bd37ac 100644 --- a/develop/vercel/index.html +++ b/develop/vercel/index.html @@ -56,8 +56,6 @@ - - @@ -1494,6 +1492,8 @@ + + @@ -1539,6 +1539,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/en/index.html b/en/index.html index 0dbc4e1..eef3ab9 100644 --- a/en/index.html +++ b/en/index.html @@ -52,8 +52,6 @@ - - @@ -1476,6 +1474,8 @@ + + @@ -1521,6 +1521,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • diff --git a/index.html b/index.html index e051ee8..48a7575 100644 --- a/index.html +++ b/index.html @@ -52,8 +52,6 @@ - - @@ -1471,6 +1469,8 @@ + + @@ -1516,6 +1516,29 @@ +
  • + + + + + 2025 + + + + +
  • + + + + + + + + + + + +
  • @@ -2030,71 +2053,45 @@ ____ __ ____ ______ ______ ____ __ ____ __ .__ __.
  • -->
    -
    - - - -

    + +
    +

    +
    + + + -
    - - -
    +
    • 通过主题和目录以打开文章
      • @@ -2107,7 +2104,6 @@ ____ __ ____ ______ ______ ____ __ ____ __ .__ __.
    -