diff --git a/config.toml b/config.toml index 4fec681..06b533d 100644 --- a/config.toml +++ b/config.toml @@ -2,7 +2,7 @@ base_url = "https://jackbondpreston.me" compile_sass = true build_search_index = false -generate_feed = true +generate_feeds = true [markdown] highlight_code = true diff --git a/content/学中文学了一年了.md b/content/学中文学了一年了.md new file mode 100644 index 0000000..c849bad --- /dev/null +++ b/content/学中文学了一年了.md @@ -0,0 +1,18 @@ ++++ +title = "学中文学了一年了" +date = 2024-09-23 +template = "article.html" ++++ + +现在已经一年左右以前我开始认真地学习了中文。因此我觉得我应该写关于我的经历一下。 + +我开始学习了时,我只用一个方法:[Anki](https://apps.ankiweb.net/)卡片。我还认为学习方法上,Anki是最有效的。但是为了提高听力和口语,它不太好。 + +这是为什么去年我也开始在Italki修课了。因为[Italki](https://www.italki.com/)有很多的中文老师,所以你可以选择一个最适合你的学习方式的。对我来说,这是最有效方法提高我的口语。 + +因为这年上半年我还感觉了我的听力水平不好,所以我调查了方法提高这个。我发现了大部分人建议听博客,然后我找到一些有用的博客。我最喜欢的是那些: +1. [听故事说中文](https://open.spotify.com/show/04re9FvL1xviHGWvXKoAhZ?si=d7bc25d6f481427b) +2. [猫咪中文](https://open.spotify.com/show/7sHdRAysnMygox20EuYlwp?si=6ec8583891484aef) +3. [茶歇中文](https://open.spotify.com/show/6mJNegfDGmNaG1mWJtZJed?si=15f5851993d74a48) + +我认为将来要发生社么?我还没知道,但是我希望我继续进步。明年三月我打算和我的对象一起去中国旅游。其实我十分期待这个旅行,因为我不但没去过中国,甚至连亚洲也没去过!既然中国菜非常好吃,我应该学到怎么流利地点菜。我也希望在中国我可以够有信心尝试和中国人聊聊天儿。 \ No newline at end of file diff --git a/sass/style/main.scss b/sass/style/main.scss index 111f4f3..f065d87 100644 --- a/sass/style/main.scss +++ b/sass/style/main.scss @@ -36,13 +36,31 @@ url('/fonts/source-code-pro-v22-latin-ext_latin-700italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ } +@font-face { + font-family: 'Noto Sans CJK'; + font-style: normal; + font-weight: 400; + src: local(''), + url('/fonts/NotoSansCJKsc-Regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/NotoSansCJKsc-Regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + +@font-face { + font-family: 'Noto Sans CJK'; + font-style: normal; + font-weight: 700; + src: local(''), + url('/fonts/NotoSansCJKsc-Bold.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ + url('/fonts/NotoSansCJKsc-Bold.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ +} + body { background-color: $background-color; color: $body-color; padding-left: 5vw; padding-right: 5vw; padding-top: 5vh; - font-family: 'Source Code Pro'; + font-family: 'Source Code Pro', 'Noto Sans CJK'; font-size: 1.5rem; @media screen and (max-width: 600px) { diff --git a/static/fonts/NotoSansCJKsc-Bold.woff b/static/fonts/NotoSansCJKsc-Bold.woff new file mode 100644 index 0000000..5c1dc58 Binary files /dev/null and b/static/fonts/NotoSansCJKsc-Bold.woff differ diff --git a/static/fonts/NotoSansCJKsc-Bold.woff2 b/static/fonts/NotoSansCJKsc-Bold.woff2 new file mode 100644 index 0000000..fb7287e Binary files /dev/null and b/static/fonts/NotoSansCJKsc-Bold.woff2 differ diff --git a/static/fonts/NotoSansCJKsc-Regular.woff b/static/fonts/NotoSansCJKsc-Regular.woff new file mode 100644 index 0000000..2a3c77d Binary files /dev/null and b/static/fonts/NotoSansCJKsc-Regular.woff differ diff --git a/static/fonts/NotoSansCJKsc-Thin.woff2 b/static/fonts/NotoSansCJKsc-Thin.woff2 new file mode 100644 index 0000000..571ef8e Binary files /dev/null and b/static/fonts/NotoSansCJKsc-Thin.woff2 differ