Skip to content

Commit 4b341fa

Browse files
author
Gizeta
committed
初版
1 parent a63ae2c commit 4b341fa

File tree

8 files changed

+76
-0
lines changed

8 files changed

+76
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.jekyll-metadata
2+
_site/
3+
4+
node_modules/

_config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
collections:
2+
member:
3+
output: true
4+
include:
5+
- bundle.js
6+
exclude:
7+
- src
8+
- node_modules
9+
- "*.js"
10+
- package.json

_data/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name: "五个非洲人"
2+
github: "https://github.com/Five-African"

_layouts/json.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{ page.data | jsonify }}

_member/gizeta.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: json
3+
data:
4+
name: "空鱼"
5+
id: "Gizeta"
6+
leader: true
7+
skills: ["C", "C#", "Ruby", "Node.js", "PHP"]
8+
contacts:
9+
github: "https://github.com/Gizeta"
10+
weibo: "http://weibo.com/gizeta"
11+
website: "http://gizeta.me/"
12+
---

bundle.js

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<title>A Simple Introduction to the Five-African Team</title>
6+
<style>
7+
html, body {
8+
background-color: #272822;
9+
}
10+
</style>
11+
</head>
12+
<body>
13+
<div id="root"></div>
14+
<script src="bundle.js"></script>
15+
</body>
16+
</html>

team.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
---
3+
{
4+
{% for config in site.data.config %}"{{config[0]}}": "{{config[1]}}",
5+
{% endfor %}
6+
"members": [
7+
{% for person in site.member %}{{ person.data | jsonify }}{% unless forloop.last %},
8+
{% endunless %}{% endfor %}
9+
]
10+
}

0 commit comments

Comments
 (0)