From 68453f7374a3ac216fbf3e9974407fe1df722ec7 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 2 May 2017 08:51:47 +0200 Subject: [PATCH] Use manual ordering for posts --- blog/content/_index.md | 3 +++ blog/content/posts/01-multiboot-kernel.md | 1 + blog/content/posts/02-entering-longmode.md | 1 + blog/content/posts/03-set-up-rust.md | 1 + blog/content/posts/04-printing-to-screen.md | 1 + blog/content/posts/05-allocating-frames.md | 1 + blog/content/posts/06-page-tables.md | 1 + blog/content/posts/07-remap-the-kernel.md | 1 + blog/content/posts/08-kernel-heap.md | 1 + blog/content/posts/09-handling-exceptions.md | 1 + blog/content/posts/10-double-faults.md | 1 + 11 files changed, 13 insertions(+) create mode 100644 blog/content/_index.md diff --git a/blog/content/_index.md b/blog/content/_index.md new file mode 100644 index 00000000..5ec844a4 --- /dev/null +++ b/blog/content/_index.md @@ -0,0 +1,3 @@ ++++ +sort_by = "order" ++++ diff --git a/blog/content/posts/01-multiboot-kernel.md b/blog/content/posts/01-multiboot-kernel.md index f4017d4a..7b697251 100644 --- a/blog/content/posts/01-multiboot-kernel.md +++ b/blog/content/posts/01-multiboot-kernel.md @@ -1,5 +1,6 @@ +++ title = "A minimal x86 kernel" +order = 1 url = "multiboot-kernel" date = "2015-08-18" aliases = [ diff --git a/blog/content/posts/02-entering-longmode.md b/blog/content/posts/02-entering-longmode.md index ff4dfacf..42195d61 100644 --- a/blog/content/posts/02-entering-longmode.md +++ b/blog/content/posts/02-entering-longmode.md @@ -1,5 +1,6 @@ +++ title = "Entering Long Mode" +order = 2 url = "entering-longmode" date = "2015-08-25" updated = "2015-10-29" diff --git a/blog/content/posts/03-set-up-rust.md b/blog/content/posts/03-set-up-rust.md index 8f268657..320c2f1f 100644 --- a/blog/content/posts/03-set-up-rust.md +++ b/blog/content/posts/03-set-up-rust.md @@ -1,5 +1,6 @@ +++ title = "Set Up Rust" +order = 3 url = "set-up-rust" date = "2015-09-02" updated = "2017-04-12" diff --git a/blog/content/posts/04-printing-to-screen.md b/blog/content/posts/04-printing-to-screen.md index 927dd388..2742b98a 100644 --- a/blog/content/posts/04-printing-to-screen.md +++ b/blog/content/posts/04-printing-to-screen.md @@ -1,5 +1,6 @@ +++ title = "Printing to Screen" +order = 4 slug = "printing-to-screen" date = "2015-10-23" updated = "2016-10-31" diff --git a/blog/content/posts/05-allocating-frames.md b/blog/content/posts/05-allocating-frames.md index ca5443af..610780ee 100644 --- a/blog/content/posts/05-allocating-frames.md +++ b/blog/content/posts/05-allocating-frames.md @@ -1,5 +1,6 @@ +++ title = "Allocating Frames" +order = 5 slug = "allocating-frames" date = "2015-11-15" +++ diff --git a/blog/content/posts/06-page-tables.md b/blog/content/posts/06-page-tables.md index ea083fc2..fa61d203 100644 --- a/blog/content/posts/06-page-tables.md +++ b/blog/content/posts/06-page-tables.md @@ -1,5 +1,6 @@ +++ title = "Page Tables" +order = 6 slug = "page-tables" date = "2015-12-09" +++ diff --git a/blog/content/posts/07-remap-the-kernel.md b/blog/content/posts/07-remap-the-kernel.md index 739c57db..0be2ae1c 100644 --- a/blog/content/posts/07-remap-the-kernel.md +++ b/blog/content/posts/07-remap-the-kernel.md @@ -1,5 +1,6 @@ +++ title = "Remap the Kernel" +order = 7 slug = "remap-the-kernel" date = "2016-01-01" updated = "2016-03-06" diff --git a/blog/content/posts/08-kernel-heap.md b/blog/content/posts/08-kernel-heap.md index 56f47814..275bda81 100644 --- a/blog/content/posts/08-kernel-heap.md +++ b/blog/content/posts/08-kernel-heap.md @@ -1,5 +1,6 @@ +++ title = "Kernel Heap" +order = 8 slug = "kernel-heap" date = "2016-04-11" +++ diff --git a/blog/content/posts/09-handling-exceptions.md b/blog/content/posts/09-handling-exceptions.md index 607d1dc7..a442cec6 100644 --- a/blog/content/posts/09-handling-exceptions.md +++ b/blog/content/posts/09-handling-exceptions.md @@ -1,5 +1,6 @@ +++ title = "Handling Exceptions" +order = 9 slug = "handling-exceptions" date = "2017-03-26" +++ diff --git a/blog/content/posts/10-double-faults.md b/blog/content/posts/10-double-faults.md index bc513665..531d449e 100644 --- a/blog/content/posts/10-double-faults.md +++ b/blog/content/posts/10-double-faults.md @@ -1,5 +1,6 @@ +++ title = "Double Faults" +order = 10 slug = "double-faults" date = "2017-01-02" +++