Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/invinciblycool/lekh.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRahul Tiwari <jprrahultiwari@gmail.com>2020-04-02 16:10:21 +0300
committerRahul Tiwari <jprrahultiwari@gmail.com>2020-04-02 16:10:21 +0300
commit0ea8d3d2eddafe81f76a947b2f6e1b1675873b75 (patch)
tree30e69bd7323e74b22ef9b6b415e201a1ce9afff1
parent047bcedb336788ff71a2869b10908470aabf7676 (diff)
Add exampleSite
-rw-r--r--exampleSite/archetypes/default.md6
-rw-r--r--exampleSite/content/posts/post-01.md6
-rw-r--r--exampleSite/content/posts/post-02.md6
-rw-r--r--exampleSite/content/posts/post-03.md7
-rw-r--r--exampleSite/content/posts/random-rant.md7
-rw-r--r--exampleSite/data/personalize.toml10
6 files changed, 42 insertions, 0 deletions
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.<br/> 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