Skip to content

Commit 45d9ff0

Browse files
authored
Update README.md
1 parent 39bd3c5 commit 45d9ff0

File tree

1 file changed

+91
-41
lines changed

1 file changed

+91
-41
lines changed

README.md

Lines changed: 91 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,118 @@
1-
# MatJek
1+
# UNIC 实验室本科生实习招生
22

3-
A responsive [Material](https://material.io/) theme based on [Materialize.css](http://materializecss.com/) for jekyll sites.
3+
欢迎来到**泛在网络与智能计算研究组(UNIC)** 本科生实习招生网站!
44

5-
## Features
5+
本网站基于 [MatJek](https://github.com/ShawnTeoh/matjek) 主题构建,采用 [Material Design](https://material.io/) 设计理念,为响应式 Jekyll 网站。
66

7-
* Google Analytics
8-
* Disqus
9-
* [GitHub project page](https://shawnteoh.github.io/matjek/projects/)
10-
* [Tags](https://shawnteoh.github.io/matjek/tags/) and [Categories](https://shawnteoh.github.io/matjek/categories/)
11-
* Modular CSS and JS includes ([example](https://github.com/ShawnTeoh/matjek/blob/gh-pages/projects.md/))
12-
* [Fancy "About" page](https://shawnteoh.github.io/matjek/about)
7+
## 🎯 关于我们
138

14-
## Installation
9+
UNIC 实验室致力于泛在网络与智能计算领域的前沿研究,主要研究方向包括:
1510

16-
Clone or fork this repo and edit `_config.yml` as needed.
11+
- **6G 与未来智能无线网络**:基于人工智能的网络管理和优化
12+
- **空天地一体化网络**:全域网络覆盖和协议架构设计
13+
- **车联网与自动驾驶技术**:低时延高可靠通信
1714

18-
## Configuration
15+
## 📚 实习招生信息
1916

20-
Most of the configurations can be found in `_config.yml`. The configurations listed below are specific to MatJek. If you are not using `google_tracking_id` or `disqus_shortname`, just remove them completely.
17+
我们现诚邀优秀本科生加入实习项目,参与前沿课题研究。实习生将有机会:
18+
19+
- 深入学习最新的网络技术和人工智能算法
20+
- 参与真实的科研项目和论文发表
21+
- 获得资深研究员的技术指导
22+
- 建立学术合作网络
23+
24+
## 🔧 网站部署和配置
25+
26+
### 快速开始
27+
28+
克隆或 fork 本仓库,编辑 `_config.yml` 文件:
2129

2230
```yaml
23-
github_profile: "github_profile_url"
24-
user: "your_name" # Appears at sidebar
25-
user_email: "your_email" # Appears at sidebar, remove whole variable if unwanted
26-
contact_url: "google_form_link"
27-
google_tracking_id: "google_analytics_ID"
28-
disqus_shortname: "shortname_given_by_Disqus"
31+
title: "你的网站标题"
32+
description: "网站描述"
33+
url: "https://your-domain.github.io"
34+
github_profile: "https://github.com/your-username"
35+
user: "你的名称"
36+
contact_url: "https://your-contact-link.com"
2937
```
3038
31-
Edit the images in `assets/res` to suit your liking, but try to stick to the original resolutions.
39+
### 环境配置
3240
33-
If you would like to enable comments in a post (disqus_shortname must be provided), add this line to the front matter of the post.
41+
本项目需要 Ruby 和 Jekyll。首先安装依赖:
3442
35-
```yaml
36-
comments: 1
43+
```bash
44+
bundle install
45+
```
46+
47+
### 本地预览
48+
49+
运行以下命令在本地预览网站:
50+
51+
```bash
52+
bundle exec jekyll serve
3753
```
3854

39-
Add tags and categories to your posts in the front matter as well. Multiple tags/categories can be assigned but need to be separated by spaces.
55+
然后在浏览器中打开 `http://localhost:4000`
56+
57+
### 常用编辑文件
58+
59+
- **`_config.yml`** - 网站全局配置
60+
- **`about.md`** - 关于页面
61+
- **`contact.md`** - 联系方式页面
62+
- **`projects.md`** - 项目展示页面
63+
- **`_posts/`** - 博客文章目录
64+
- **`assets/css/`** - 样式表
65+
- **`assets/js/`** - JavaScript 脚本
66+
67+
### 配置文档
68+
69+
更多配置选项说明:
4070

4171
```yaml
42-
categories: default default2
43-
tags: test test2
72+
github_profile: "GitHub 个人/组织主页链接"
73+
user: "显示在侧边栏的用户名"
74+
user_email: "侧边栏展示的邮箱(可选,留空则不显示)"
75+
contact_url: "联系方式链接或表单链接(可选)"
76+
google_tracking_id: "Google Analytics 跟踪 ID(可选)"
77+
disqus_shortname: "Disqus 评论系统名称(可选)"
4478
```
4579
46-
## Contributing
80+
### 添加文章
81+
82+
`_posts/` 目录下创建新文件,命名格式为 `YYYY-MM-DD-标题.md`:
83+
84+
```yaml
85+
---
86+
layout: post
87+
title: 文章标题
88+
date: 2025-10-28 12:00:00
89+
categories: 分类名
90+
tags: 标签1 标签2
91+
comments: 1
92+
---
93+
94+
# 文章内容
95+
你的文章内容写在这里...
96+
```
4797

48-
Bug reports and pull requests are welcomed on GitHub at https://github.com/shawnteoh/matjek. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
98+
## 📦 依赖库
4999

50-
## Development
100+
- [Materialize.css](http://materializecss.com/) - Material Design 框架
101+
- [GeoPattern](https://github.com/btmills/geopattern/) - 几何图案生成
102+
- [Animate.css](https://daneden.github.io/animate.css/) - 动画库
103+
- [Morphtext](http://morphext.fyianlai.com/) - 文本动画效果
51104

52-
To set up your environment to develop this theme, clone/fork the repo and run `bundle install`.
105+
## 📄 许可证
53106

54-
To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000/matjek/`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
107+
本主题采用 [GPL v3 License](https://www.gnu.org/licenses/gpl-3.0.en.html) 开源许可。
55108

56-
## License
109+
## 🙏 致谢
57110

58-
The theme is available as open source under the terms of the [GPL v3 License](https://www.gnu.org/licenses/gpl-3.0.en.html).
111+
感谢以下项目的灵感和支持:
112+
- [Yummy-Jekyll](https://github.com/DONGChuan/Yummy-Jekyll/)
113+
- [Codinfox Lanyon](https://github.com/codinfox/codinfox-lanyon/)
114+
- [MatJek](https://github.com/ShawnTeoh/matjek)
59115

60-
## Libraries
61-
* [Materialize.css](http://materializecss.com/)
62-
* [GeoPattern](https://github.com/btmills/geopattern/)
63-
* [Animate.css](https://daneden.github.io/animate.css/)
64-
* [Morphtext](http://morphext.fyianlai.com/)
116+
---
65117

66-
## References
67-
* https://github.com/DONGChuan/Yummy-Jekyll/
68-
* https://github.com/codinfox/codinfox-lanyon/
118+
**更多信息**,请访问我们的 [官方网站](https://unicxidian.org/)

0 commit comments

Comments
 (0)