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

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelo Stavrow <angelo@fogcreek.com>2018-08-14 17:21:32 +0300
committerAngelo Stavrow <angelo@fogcreek.com>2018-08-14 17:21:32 +0300
commitd68a675504bba7f43437912eab94cba12784b205 (patch)
tree81a0891adb8e22fa42779536e999d4a5b8df4d1b /config.toml.example
parent994fd986bab1cf0baa4c7cfde62929e5f2a0772e (diff)
Add a sample config.toml and make theme.toml generic
Diffstat (limited to 'config.toml.example')
-rw-r--r--config.toml.example33
1 files changed, 33 insertions, 0 deletions
diff --git a/config.toml.example b/config.toml.example
new file mode 100644
index 0000000..97db2aa
--- /dev/null
+++ b/config.toml.example
@@ -0,0 +1,33 @@
+languageCode = "en-US"
+theme = "indigo"
+baseURL = "https://example.com/"
+title = "Site Title"
+
+[params]
+ AuthorName = "Author Name"
+ Description = "Description of website for head meta tag"
+ Subtitle = "A subtitle for your site"
+ Avatar = "path/to/avatar.jpg"
+
+ # Copyright owner for display in the footer:
+ CopyrightOwner = "Copyright owner name"
+
+ # Contact/social-network identifiers for social icons
+ EmailAddress = "email.address@example.com"
+ FlickrUser = "FlickrUserName"
+ GitHubUser = "GitHubUserName"
+ GitLabUser = "GitLabUserName"
+ GlitchUser = "GlitchUserName"
+ TwitterUser = "TwitterUserName"
+ MicroBlogUser = "MicroBlogUserName"
+
+ # These are parameters used for indieweb identity. You should set these along
+ # with the top-level email/social network parameters.
+ [params.indieWeb]
+ EmailAddress = "email.address@example.com"
+ FlickrUser = "FlickrUserName"
+ GitHubUser = "GitHubUserName"
+ TwitterUser = "TwitterUserName"
+ MicroBlogUser = "MicroBlogUserName"
+ Country = "CountryName"
+ City = "CityName" \ No newline at end of file