From 0ea8d3d2eddafe81f76a947b2f6e1b1675873b75 Mon Sep 17 00:00:00 2001 From: Rahul Tiwari Date: Thu, 2 Apr 2020 18:40:21 +0530 Subject: [PATCH] Add exampleSite --- exampleSite/archetypes/default.md | 6 ++++++ exampleSite/content/posts/post-01.md | 6 ++++++ exampleSite/content/posts/post-02.md | 6 ++++++ exampleSite/content/posts/post-03.md | 7 +++++++ exampleSite/content/posts/random-rant.md | 7 +++++++ exampleSite/data/personalize.toml | 10 ++++++++++ 6 files changed, 42 insertions(+) create mode 100644 exampleSite/archetypes/default.md create mode 100644 exampleSite/content/posts/post-01.md create mode 100644 exampleSite/content/posts/post-02.md create mode 100644 exampleSite/content/posts/post-03.md create mode 100644 exampleSite/content/posts/random-rant.md create mode 100644 exampleSite/data/personalize.toml diff --git a/exampleSite/archetypes/default.md b/exampleSite/archetypes/default.md new file mode 100644 index 0000000..00e77bd --- /dev/null +++ b/exampleSite/archetypes/default.md @@ -0,0 +1,6 @@ +--- +title: "{{ replace .Name "-" " " | title }}" +date: {{ .Date }} +draft: true +--- + diff --git a/exampleSite/content/posts/post-01.md b/exampleSite/content/posts/post-01.md new file mode 100644 index 0000000..ba6a900 --- /dev/null +++ b/exampleSite/content/posts/post-01.md @@ -0,0 +1,6 @@ +--- +title: "The Matrix" +date: "1999-03-31" +--- + +The inception..... \ No newline at end of file diff --git a/exampleSite/content/posts/post-02.md b/exampleSite/content/posts/post-02.md new file mode 100644 index 0000000..6a1db1c --- /dev/null +++ b/exampleSite/content/posts/post-02.md @@ -0,0 +1,6 @@ +--- +title: "The Matrix Reloaded" +date: "2003-05-07" +--- + +The sequel..... diff --git a/exampleSite/content/posts/post-03.md b/exampleSite/content/posts/post-03.md new file mode 100644 index 0000000..75c4772 --- /dev/null +++ b/exampleSite/content/posts/post-03.md @@ -0,0 +1,7 @@ +--- +title: "The Matrix Revolutions" +date: "2003-11-05" +--- + + +The third installment.... \ No newline at end of file diff --git a/exampleSite/content/posts/random-rant.md b/exampleSite/content/posts/random-rant.md new file mode 100644 index 0000000..a3a7e7c --- /dev/null +++ b/exampleSite/content/posts/random-rant.md @@ -0,0 +1,7 @@ +--- +title: "Rant post" +date: "2020-04-02" +draft: true +--- + +Too much to rant :( diff --git a/exampleSite/data/personalize.toml b/exampleSite/data/personalize.toml new file mode 100644 index 0000000..4a73a85 --- /dev/null +++ b/exampleSite/data/personalize.toml @@ -0,0 +1,10 @@ +Name = "Agent Smith" +# Supports markdown +About = "We're not here because we're free. We're here because we're __not__ free. There's no escaping reason. No denying purpose. Because as we both know without purpose, we would not exist.
Read more [here](https://matrix.fandom.com/wiki/Agent_Smith)" +Github = "invinciblycool" +Twitter = "getFANDOM" +Goodreads = "https://www.goodreads.com/user/show/91520565-rahul-tiwari" +Linkedin = "https://www.linkedin.com/in/rahul-tiwari-43708b128/" +Email = "agent.smith@thematrix.com" +Resume = "" +PostLimit = 4 \ No newline at end of file