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

github.com/darshanbaral/khata.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@gmail.com>2019-07-03 06:13:51 +0300
committerDarshan Baral <darshanbaral@gmail.com>2019-07-03 06:13:51 +0300
commit8d17513babc4a858a02fbb771b7daf6e821460d3 (patch)
treea74055a874527e04c502476c10cedbf3440bb7a1
parent388f3bf103c2052c64ba4279d746d36f469f6fd1 (diff)
Added exampleSite
-rw-r--r--exampleSite/config.toml38
-rw-r--r--exampleSite/content/archive/_index.md4
-rw-r--r--exampleSite/content/notes/_index.md4
-rw-r--r--exampleSite/content/notes/boxplot.md27
-rw-r--r--exampleSite/content/poems/_index.md4
-rw-r--r--exampleSite/content/poems/a_clock_stopped.md29
-rw-r--r--exampleSite/content/poems/because_i_could_not.md37
-rw-r--r--exampleSite/content/poems/im_nobody.md17
-rw-r--r--exampleSite/content/post/_index.md4
-rw-r--r--exampleSite/content/post/markdown.1.md36
-rw-r--r--exampleSite/content/post/markdown.md36
-rw-r--r--theme.toml6
12 files changed, 239 insertions, 3 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..a902628
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,38 @@
+baseurl = "/"
+title = "My Blog Site"
+theme = "khata"
+languageCode = "en-us"
+copyright = "2019. First Last"
+pluralizelisttitles = false
+disableKinds = ["taxonomyTerm"]
+
+[taxonomies]
+ category = "categories"
+ tag = "tags"
+
+[params]
+ dateFormat = "2006-01-02"
+
+[params.author]
+ name = "McFirst Last, A.B., X.Y"
+ profilephoto = "https://i.stack.imgur.com/oI2SB.jpg"
+ title = "Title"
+ subtitle = "City Name, ST"
+ about = '''
+ **Lorem Ipsum is simply dummy text of the printing and typesetting industry**. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into *electronic typesetting*, remaining essentially unchanged.
+'''
+
+[[params.social]]
+ name = "Twitter"
+ link = "#"
+ iconclass= "fab fa-twitter"
+
+[[params.social]]
+ name = "LinkedIn"
+ link = "#"
+ iconclass= "fab fa-linkedin"
+
+[[params.social]]
+ name = "Email"
+ link = "mailto:username@domain.com"
+ iconclass= "fas fa-envelope" \ No newline at end of file
diff --git a/exampleSite/content/archive/_index.md b/exampleSite/content/archive/_index.md
new file mode 100644
index 0000000..b8d28dc
--- /dev/null
+++ b/exampleSite/content/archive/_index.md
@@ -0,0 +1,4 @@
+---
+title: "Archive"
+hidefrommenu: true
+--- \ No newline at end of file
diff --git a/exampleSite/content/notes/_index.md b/exampleSite/content/notes/_index.md
new file mode 100644
index 0000000..1977f4c
--- /dev/null
+++ b/exampleSite/content/notes/_index.md
@@ -0,0 +1,4 @@
+---
+title: "Notes"
+weight: 10
+--- \ No newline at end of file
diff --git a/exampleSite/content/notes/boxplot.md b/exampleSite/content/notes/boxplot.md
new file mode 100644
index 0000000..3c59178
--- /dev/null
+++ b/exampleSite/content/notes/boxplot.md
@@ -0,0 +1,27 @@
+---
+title: "Box Plot"
+date: 2019-06-28
+tags: ["Visualization"]
+categories: ["R"]
+description: "Drawing box plot in base R"
+draft: false
+---
+
+# matrix
+```
+mat <- cbind(Uni05 = (1:100)/21, Norm = rnorm(100),
+ `5T` = rt(100, df = 5), Gam2 = rgamma(100, shape = 2))
+boxplot(mat) # directly, calling boxplot.matrix()
+```
+
+# data.frame
+```
+df. <- as.data.frame(mat)
+par(las = 1) # all axis labels horizontal
+boxplot(df., main = "boxplot(*, horizontal = TRUE)", horizontal = TRUE)
+```
+
+# formula
+```
+boxplot(wt ~ cyl, mtcars)
+``` \ No newline at end of file
diff --git a/exampleSite/content/poems/_index.md b/exampleSite/content/poems/_index.md
new file mode 100644
index 0000000..368c61f
--- /dev/null
+++ b/exampleSite/content/poems/_index.md
@@ -0,0 +1,4 @@
+---
+title: "Poems"
+weight: 30
+--- \ No newline at end of file
diff --git a/exampleSite/content/poems/a_clock_stopped.md b/exampleSite/content/poems/a_clock_stopped.md
new file mode 100644
index 0000000..1904deb
--- /dev/null
+++ b/exampleSite/content/poems/a_clock_stopped.md
@@ -0,0 +1,29 @@
+---
+title: "A Clock stopped"
+date: 2018-05-18
+tags: ["Emily Dickinson"]
+categories: ["Time"]
+draft: false
+---
+
+A Clock stopped —\\
+Not the Mantel's —\\
+Geneva's farthest skill\\
+Can't put the puppet bowing —\\
+That just now dangled still —\\
+
+An awe came on the Trinket!\\
+The Figures hunched, with pain —\\
+Then quivered out of Decimals —\\
+Into Degreeless Noon —
+
+It will not stir for Doctors —\\
+This Pendulum of snow —\\
+The Shopman importunes it —\\
+While cool — concernless No —
+
+Nods from the Gilded pointers —\\
+Nods from the Seconds slim —\\
+Decades of Arrogance between\\
+The Dial life —\\
+And Him — \ No newline at end of file
diff --git a/exampleSite/content/poems/because_i_could_not.md b/exampleSite/content/poems/because_i_could_not.md
new file mode 100644
index 0000000..fb9429b
--- /dev/null
+++ b/exampleSite/content/poems/because_i_could_not.md
@@ -0,0 +1,37 @@
+---
+title: "Because I could not stop for death"
+date: 2018-04-17
+tags: ["Emily Dickinson"]
+categories: ["Death"]
+draft: false
+---
+
+Because I could not stop for Death,\\
+He kindly stopped for me;\\
+The carriage held but just ourselves\\
+And Immortality.
+
+We slowly drove, he knew no haste,\\
+And I had put away\\
+My labor, and my leisure too,\\
+For his civility.
+
+We passed the school, where children strove\\
+At recess, in the ring;\\
+We passed the fields of gazing grain,\\
+We passed the setting sun.
+
+Or rather, he passed us;\\
+The dews grew quivering and chill,\\
+For only gossamer my gown,\\
+My tippet only tulle.
+
+We paused before a house that seemed\\
+A swelling of the ground;\\
+The roof was scarcely visible,\\
+The cornice but a mound.
+
+Since then 'tis centuries, and yet each\\
+Feels shorter than the day\\
+I first surmised the horses' heads\\
+Were toward eternity. \ No newline at end of file
diff --git a/exampleSite/content/poems/im_nobody.md b/exampleSite/content/poems/im_nobody.md
new file mode 100644
index 0000000..66054b5
--- /dev/null
+++ b/exampleSite/content/poems/im_nobody.md
@@ -0,0 +1,17 @@
+---
+title: "I'm Nobody! Who are you?"
+date: 2018-04-18
+tags: ["Emily Dickinson"]
+categories: ["Personality"]
+draft: false
+---
+
+I'm nobody! Who are you?\\
+Are you nobody, too?\\
+Then there's a pair of us — don't tell!\\
+They'd banish us, you know.
+
+How dreary to be somebody!\\
+How public, like a frog\\
+To tell your name the livelong day\\
+To an admiring bog! \ No newline at end of file
diff --git a/exampleSite/content/post/_index.md b/exampleSite/content/post/_index.md
new file mode 100644
index 0000000..82ecdd2
--- /dev/null
+++ b/exampleSite/content/post/_index.md
@@ -0,0 +1,4 @@
+---
+title: "Blog Posts"
+weight: 20
+--- \ No newline at end of file
diff --git a/exampleSite/content/post/markdown.1.md b/exampleSite/content/post/markdown.1.md
new file mode 100644
index 0000000..920bd46
--- /dev/null
+++ b/exampleSite/content/post/markdown.1.md
@@ -0,0 +1,36 @@
+---
+title: "A Blog Post 2"
+date: 2019-05-22
+tags: ["Template"]
+categories: ["Training"]
+draft: false
+---
+
+# Heading 1
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
+
+## Heading 2
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
+
+### Heading 3
+
+1. Ordered list
+ - Unordered list
+ - Unordered list
+ - `Inline code` in unordered list
+
+# Code Snippet
+
+```
+let x = 2;
+console.log(2)
+```
+
+# 2nd Heading 1
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
+
+## 2nd Heading 2
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. \ No newline at end of file
diff --git a/exampleSite/content/post/markdown.md b/exampleSite/content/post/markdown.md
new file mode 100644
index 0000000..6f8378d
--- /dev/null
+++ b/exampleSite/content/post/markdown.md
@@ -0,0 +1,36 @@
+---
+title: "A Blog Post"
+date: 2019-05-20
+tags: ["Markdown"]
+categories: ["Tutorial"]
+draft: false
+---
+
+# Heading 1
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
+
+## Heading 2
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
+
+### Heading 3
+
+1. Ordered list
+ - Unordered list
+ - Unordered list
+ - `Inline code` in unordered list
+
+# Code Snippet
+
+```
+let x = 2;
+console.log(2)
+```
+
+# 2nd Heading 1
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
+
+## 2nd Heading 2
+
+Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. \ No newline at end of file
diff --git a/theme.toml b/theme.toml
index 78323c2..a87968e 100644
--- a/theme.toml
+++ b/theme.toml
@@ -2,9 +2,9 @@ name = "khata"
license = "MIT"
licenselink = ""
description = "Documentation theme for Hugo"
-homepage = ""
-tags = ["documentation", "white", "simple"]
-features = ["documentation", "white", "bootstrap", "responsive"]
+homepage = "https://github.com/darshanbaral/kitab/blob/master/LICENSE"
+tags = ["documentation", "simple"]
+features = ["documentation", "bootstrap", "responsive"]
min_version = "0.55"
[author]