+
+ );
+}
+
+export const getStaticProps = async () => {
+ const tags = await getAllTags();
+ return {
+ props: {
+ tags: tags,
+ },
+ };
+};
diff --git a/posts/long-live-rss.en.md b/posts/long-live-rss.en.md
index 12276322..d7a6a95d 100644
--- a/posts/long-live-rss.en.md
+++ b/posts/long-live-rss.en.md
@@ -7,6 +7,8 @@ tags: rss, reading, web
RSS: A family of Web feed formats used to publish frequently updated works (blog entries, news headlines, audio, and video) in a standardized format. [Aaron Swartz](http://www.aaronsw.com/) helped create it at the age of 14 and committed suicide at 26.
+
+
Aaron Swartz is a pioneer of open web fundamentalism. His deeds once affected the way I looked at the world. He used an extreme attitude to tell the world how to fight against the world. I recommend you to watch the documentary "The Internet's Own Boy: The Story of Aaron Swartz". This is the best way to understand the authors of RSS.
Here are some feed examples I subscribed for reading:
@@ -52,4 +54,8 @@ As a contributor for RSSHub, I'm also glad to share my self-hosted RSSHub for yo
I'll try to keep [my repository](https://github.com/la3rence/RSSHub) in sync with [the official RSSHub git repository](https://github.com/DIYgod/RSSHub) every day.
-I use the Reeder app for iOS. And also for feed sync up reason I host a FreshRSS service to keep all RSS feeds in one place. You can also try it or anyother client above and anyother services like Feedly, TinyTinyRSS...
+I use the Reeder app for iOS. And also for feed sync up reason I host a FreshRSS service to keep all RSS feeds in one place.
+
+
+
+You can also try it or anyother client above and anyother services like Feedly, TinyTinyRSS...
diff --git a/posts/long-live-rss.zh.md b/posts/long-live-rss.zh.md
index 8d14742e..136031d8 100644
--- a/posts/long-live-rss.zh.md
+++ b/posts/long-live-rss.zh.md
@@ -7,6 +7,8 @@ tags: rss, reading, web
RSS(简易信息聚合): 一系列网络提要格式,用于以标准化格式发布经常更新的作品(博客、新闻、音频和视频)。作者 [Aaron Swartz](http://www.aaronsw.com/) 在 14 岁时设计了它,却在 26 岁自杀。
+
+
Aaron Swartz 是一位开放互联网原教旨主义的先驱。他的事迹一度影响了我看待世界的方式,他以一种极端的姿态告诉世人如何对抗这个世界。推荐大家看一看十年前上映的《互联网之子》这部纪录片,这是了解 RSS 作者的最佳方式。
这是我自己订阅的一些 RSS 源。
@@ -52,4 +54,8 @@ Aaron Swartz 是一位开放互联网原教旨主义的先驱。他的事迹一
我会尽力每天将[我的 RSSHub 代码仓库](https://github.com/la3rence/RSSHub)与[官方仓库](https://github.com/DIYgod/RSSHub)保持同步。
-我使用的客户端是 Reeder 。另外,出于同步 RSS 源的原因,我自己部署了 FreshRSS 服务,将所有 RSS Feed 保存在一个位置。 你可以试试或上面提到的的任何其他客户端以及任何其他服务端,比如 Feedly、TinyTinyRSS...
+我使用的客户端是 Reeder。另外,出于同步 RSS 源的原因,我自己部署了 FreshRSS 服务,将所有 RSS Feed 保存在一个位置。
+
+
+
+你可以试试或上面提到的的任何其他客户端以及任何其他服务端,比如 Feedly、TinyTinyRSS...
diff --git a/posts/pre-rendering.en.md b/posts/pre-rendering.en.md
index a243bfd6..0ec06b74 100644
--- a/posts/pre-rendering.en.md
+++ b/posts/pre-rendering.en.md
@@ -1,6 +1,6 @@
---
-title: "Two Forms of Pre-rendering"
-date: "1970-01-01"
+title: "Next.js: Two Forms of Pre-rendering"
+date: "2018-01-01"
description: "SSG & SSR"
tags: ssg, ssr
---
diff --git a/posts/pre-rendering.ja.md b/posts/pre-rendering.ja.md
index 0e3ccbb2..faac2fa7 100644
--- a/posts/pre-rendering.ja.md
+++ b/posts/pre-rendering.ja.md
@@ -1,8 +1,9 @@
---
-title: "2 つの形式のプリレンダリング"
-date: "1970-01-01"
+title: "Next.js 2 つの形式のプリレンダリング"
+date: "2018-01-01"
description: "SSG & SSR"
tags: ssg, ssr
+visible: false
---
Next.js には、**静的生成** と **サーバーサイド レンダリング** という 2 つの形式のプリレンダリングがあります。 違いは、ページの HTML を**いつ生成するか**にあります。
diff --git a/posts/pre-rendering.md b/posts/pre-rendering.md
index 0c8e3ad9..893e19a5 100644
--- a/posts/pre-rendering.md
+++ b/posts/pre-rendering.md
@@ -1,6 +1,6 @@
---
-title: "两种预渲染形式"
-date: "1970-01-01"
+title: "Next.js 的两种预渲染形式"
+date: "2018-01-01"
description: "SSG & SSR"
tags: ssg, ssr
---
@@ -10,4 +10,4 @@ Next.js 有两种形式的预渲染:**静态生成**和**服务器端渲染**
- **静态生成**是在**构建时**生成 HTML 的预渲染方法。 然后,每个请求都会*重用*预渲染的 HTML。
- **服务器端渲染**是在**每个请求**上生成 HTML 的预渲染方法。
-重要的是,Next.js 允许您**选择**每个页面使用哪种预渲染表单。 您可以通过对大多数页面使用静态生成并对其他页面使用服务器端渲染来创建“混合”Next.js 应用程序。
+重要的是,Next.js 允许您**选择**每个页面使用哪种预渲染表单。 您可以通过对大多数页面使用静态生成并对其他页面使用服务器端渲染来创建「混合」Next.js 应用程序。
diff --git a/public/images/long-live-rss/aaronswartz.jpg b/public/images/long-live-rss/aaronswartz.jpg
new file mode 100644
index 00000000..bd2271fe
Binary files /dev/null and b/public/images/long-live-rss/aaronswartz.jpg differ