Skip to content

Commit 366ae92

Browse files
committed
initial commit
0 parents  commit 366ae92

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1838
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/public
2+
/old
3+
/resources

.hugo_build.lock

Whitespace-only changes.

LICENSE

Lines changed: 428 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# yfxu.github.io
2+
3+
Personal blog generated with [Hugo](https://gohugo.io/).
4+
5+
The feiri+v1 theme is devloped by myself, and is licensed under [MIT](https://opensource.org/licenses/mit-license.php). The license can be found in the `themes/feiri+v1` directory.
6+
7+
The blog contents such as blog posts and photos are licensed under [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/legalcode.txt). The license can be found in the root directory of this project.

archetypes/default.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: "{{ replace .Name "-" " " | title }}"
3+
date: {{ .Date }}
4+
draft: true
5+
---
6+

config.toml

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
baseURL = ""
2+
languageCode = "en-us"
3+
title = "yfxu"
4+
theme = "catlamp"
5+
disableKinds = ["taxonomy", "term"]
6+
enableGitInfo = true
7+
8+
[params]
9+
author = "Yifei Xu"
10+
authorFirst = "Yifei"
11+
indexName = "徐逸飞"
12+
description = "My personal site!"
13+
14+
#########
15+
# LINKS #
16+
#########
17+
18+
# navbar links
19+
[[params.urls.navbar]]
20+
label = "about"
21+
link = "/about"
22+
[[params.urls.navbar]]
23+
label = "blog"
24+
link = "/posts"
25+
[[params.urls.navbar]]
26+
label = "gallery"
27+
link = "/gallery"
28+
29+
# home links
30+
[[params.urls.home]]
31+
name = "Email"
32+
33+
link = "mailto:[email protected]"
34+
iconClass = "fa-solid fa-envelope"
35+
[[params.urls.home]]
36+
name = "GitHub"
37+
label = "yfxu"
38+
link = "https://github.com/yfxu"
39+
iconClass = "fa-brands fa-github"
40+
[[params.urls.home]]
41+
name = "osu!"
42+
label = "Feiri"
43+
link = "https://osu.ppy.sh/u/3214844"
44+
iconClass = "fa-solid fa-circle"
45+
[[params.urls.home]]
46+
name = "Discord"
47+
label = "Feiri#1221"
48+
link = "https://discord.com/users/121395681742159875"
49+
iconClass = "fa-brands fa-discord"
50+
51+
# footer links
52+
[[params.urls.footer]]
53+
name = "Email"
54+
label = "Email"
55+
link = "mailto:[email protected]"
56+
[[params.urls.footer]]
57+
name = "Source"
58+
label = "GitHub"
59+
link = "https://github.com/yfxu/yfxu.github.io"
60+
[[params.urls.footer]]
61+
name = "RSS"
62+
label = "RSS"
63+
link = "/index.xml"
64+
[[params.urls.footer]]
65+
name = "Site Code License"
66+
label = "MIT"
67+
link = "/mit.txt"
68+
[[params.urls.footer]]
69+
name = "Post Content License"
70+
label = "CC BY-SA 4.0"
71+
link = "https://creativecommons.org/licenses/by-sa/4.0/"
72+
73+
##########
74+
# MARKUP #
75+
##########
76+
77+
[markup]
78+
[markup.highlight]
79+
anchorLineNos = false
80+
codeFences = true
81+
guessSyntax = false
82+
hl_Lines = ''
83+
lineAnchors = ''
84+
lineNoStart = 1
85+
lineNos = true
86+
lineNumbersInTable = true
87+
noClasses = true
88+
style = 'friendly'
89+
tabWidth = 4

content/_index.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
+++
2+
layout = "index"
3+
title = "yfxu"
4+
+++
5+
6+
Yifei Xu (徐逸飞)
7+
8+
Computer Engineering Student

content/about/_index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
+++
2+
title = "about"
3+
layout = "index"
4+
weight = 1
5+
+++
6+
7+
Hi, I'm Yifei (逸飞)!
8+
9+
This is my personal website where I maintain a very cool blog and share various photos I've taken with my smartphone camera (Samsung Galaxy S9). Enjoy your stay!
10+
11+
This website doesn't use any JavaScript or cookies, just some plain HTML and CSS built with [Hugo](https://gohugo.io/). The website theme was designed and coded by myself ! :D !
12+
13+
## more about me
14+
15+
I'm a fourth-year computer engineering student at the University of Waterloo. I was born in Beijing, China 🇨🇳, but then my parents yanked me onto a one-way flight to Calgary, Canada 🇨🇦 before my first birthday! Now I live wherever school and the rest of life take me.

content/gallery/_index.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
+++
2+
title = "gallery"
3+
layout = "index"
4+
weight = 1
5+
+++
6+
7+
some random pictures I've taken on my phone:

content/gallery/images/0.jpg

2.58 MB
Loading

0 commit comments

Comments
 (0)