Skip to content

Commit 2993dbc

Browse files
committed
feature: 优化内容
1 parent 329bfa3 commit 2993dbc

3 files changed

Lines changed: 21 additions & 5 deletions

File tree

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Web技术文档 | webtech.wiki
22

3-
一个专业的Web技术文档平台,提供前端、后端、数据库、DevOps等全栈开发技术文档和教程
3+
一个专注于全栈开发技术的文档平台,涵盖 Rust、Git、Webpack、Kubernetes、CMake 等主流技术栈的学习笔记与实战教程
44

55
## 🚀 项目简介
66

@@ -11,13 +11,24 @@
1111
- 💡 技术教程和最佳实践
1212
- 🔗 开源项目展示
1313

14+
## 🛠️ 开发工具和资源列表
15+
16+
| 名称 | 描述 | 链接 |
17+
| ------------------------------------- | ---- | ----------------------------------- |
18+
| Rust 学习与实践笔记 | | <https://studyrust.webtech.wiki> |
19+
| Git 实战教程 - 从入门到团队协作 | | <https://studygit.webtech.wiki> |
20+
| Webpack 实战教程 - 前端工程化解决方案 | | <https://studywebpack.webtech.wiki> |
21+
| Rust程序设计语言(2024 Edition) | | <https://rust.webtech.wiki> |
22+
| 使用cmake在Linux环境下编译C/C++ | | <https://cmake.webtech.wiki> |
23+
| k8s入门与进阶实战 | | <https://k8s.webtech.wiki> |
24+
1425
## 👨‍💻 关于作者
1526

1627
我是一名热爱开源的开发者,专注于Web技术和后端开发。
1728

1829
### 联系方式
1930

20-
- 📧 邮箱: pan.hy@foxmail.com
31+
- 📧 邮箱: [mailto:pan.hy@foxmail.com](pan.hy@foxmail.com)
2132
- 💻 GitHub: [geekdex](https://github.com/geekdex)
2233
- 📺 哔哩哔哩: [技术视频分享](https://space.bilibili.com/172353353)
2334
- 📘 掘金: [技术文章](https://juejin.cn/user/184373686844318)

config.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
<li><a href="#home">首页</a></li>
315315
<li><a href="#tech-stack">开发路径</a></li>
316316
<li><a href="#projects">开源项目</a></li>
317-
<li><a href="https://aoco.tech" target="_blank">博客</a></li>
317+
<li><a href="https://blog.algs.tech" target="_blank">博客</a></li>
318318
</ul>
319319
</div>
320320
</nav>
@@ -499,9 +499,14 @@ <h2 class="section-title">开源项目</h2>
499499

500500
// 分批创建技术栈
501501
const techTasks = CONFIG.techStack.map((tech, index) => () => {
502-
const item = document.createElement('div');
502+
const item = document.createElement('a');
503+
item.href = tech.link;
504+
item.target = '_blank';
505+
item.rel = 'noopener';
503506
item.className = 'tech-item';
504507
item.style.animationDelay = (index * 0.1) + 's';
508+
item.style.textDecoration = 'none';
509+
item.style.color = 'inherit';
505510
item.innerHTML = `
506511
<div class="tech-icon">${tech.icon}</div>
507512
<div class="tech-name">${tech.name}</div>

0 commit comments

Comments
 (0)