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

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'exampleSite/config.toml')
-rw-r--r--exampleSite/config.toml50
1 files changed, 50 insertions, 0 deletions
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..34f73bd
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,50 @@
+baseURL = "https://example.com"
+title = "Your Website Title"
+languageCode = "en-us"
+theme = "devise"
+relativeURLs = true
+enableEmoji = true
+googleAnalytics = ""
+enableRobotsTXT = true
+copyright = "© Copyright Year, Your Name"
+
+[menu]
+ [[menu.main]]
+ identifier = "about"
+ name = "About"
+ title = "About"
+ url = "/about/"
+ weight = -110
+
+ [[menu.main]]
+ identifier = "posts"
+ name = "Posts"
+ title = "Posts"
+ url = "/post/"
+ weight = -100
+
+ [[menu.main]]
+ identifier = "categories"
+ name = "Categories"
+ title = "Categories"
+ url = "/categories/"
+ weight = -90
+
+[params]
+ header_title = "Your Name"
+ header_subtitle = "Your Subtitle Text"
+ home_image = "/images/avatar.png"
+ recent_posts = 5
+ mainSections = ["posts", "post", "blog"]
+ [[params.social]]
+ fa_icon = "fab fa-github fa-1x"
+ href = ""
+ [[params.social]]
+ fa_icon = "fab fa-linkedin-in fa-1x"
+ href = ""
+ [[params.social]]
+ fa_icon = "fab fa-twitter fa-1x"
+ href = ""
+ [[params.social]]
+ fa_icon = "fas fa-at fa-1x"
+ href = ""