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

github.com/darshanbaral/mero.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarshan Baral <darshanbaral@users.noreply.github.com>2019-03-03 07:05:48 +0300
committerGitHub <noreply@github.com>2019-03-03 07:05:48 +0300
commit1057c49ddaf67ef0a0698b0c36615baf4b43b3be (patch)
tree5e460cf0645192ce6ed73884c0d2ef171d6cd6e4
parentb27ff14badc2f6fc9d13626651e8274212e447c1 (diff)
Add files via upload
-rw-r--r--exampleSite/config.toml64
1 files changed, 64 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..9e21d6e
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,64 @@
+baseURL = "/"
+languageCode = "en-us"
+title = "My Blog"
+theme = "sanstha"
+
+[params]
+ author = "Firstname Lastname"
+ description = "My awesome blog"
+
+[menu]
+ [[menu.main]]
+ identifier = "home"
+ name = "Home"
+ title = "home"
+ url = "/"
+ weight = 100
+
+ [[menu.main]]
+ identifier = "posts"
+ name = "Posts"
+ title = "posts"
+ url = "/posts/"
+ weight = 200
+
+ [[menu.main]]
+ identifier = "categories"
+ name = "Categories"
+ title = "categories"
+ url = "/categories/"
+ weight = 300
+
+ [[menu.main]]
+ identifier = "tags"
+ name = "Tags"
+ title = "tags"
+ url = "/tags/"
+ weight = 400
+
+[params.introduction]
+ text = "**This website** is my blog. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
+
+[params.social]
+ [[params.social.list]]
+ class = "fab"
+ icon = "fa-linkedin-in"
+ url = "#"
+
+ [[params.social.list]]
+ class = "fab"
+ icon = "fa-github"
+ url = "#"
+
+ [[params.social.list]]
+ class = "fab"
+ icon = "fa-twitter"
+ url = "#"
+
+ [[params.social.list]]
+ class = "fab"
+ icon = "fa-stack-overflow"
+ url = "#"
+
+[params.footer]
+ message = "&copy; 2018 Name" \ No newline at end of file