Add basic scaffolding for site.
This commit is contained in:
commit
d95126dca8
109 changed files with 10750 additions and 0 deletions
36
themes/mainroad/exampleSite/config.toml
Normal file
36
themes/mainroad/exampleSite/config.toml
Normal file
|
@ -0,0 +1,36 @@
|
|||
baseurl = "/"
|
||||
title = "Mainroad"
|
||||
languageCode = "en-us"
|
||||
paginate = "10" # Number of posts per page
|
||||
theme = "mainroad"
|
||||
disqusShortname = "" # Enable comments by entering your Disqus shortname
|
||||
googleAnalytics = "" # Enable Google Analytics by entering your tracking id
|
||||
|
||||
[Author]
|
||||
name = "John Doe"
|
||||
bio = "John Doe's true identity is unknown. Maybe he is a successful blogger or writer. Nobody knows it."
|
||||
avatar = "img/avatar.png"
|
||||
|
||||
[Params]
|
||||
description = "John Doe's Personal blog about everything" # Description of your site
|
||||
opengraph = true
|
||||
twitter_cards = false
|
||||
readmore = false # Show "Read more" button in list if true
|
||||
authorbox = true
|
||||
pager = true
|
||||
post_meta = ["date", "categories"] # Order of post meta information
|
||||
mainSections = ["post", "docs"]
|
||||
|
||||
[Params.logo]
|
||||
subtitle = "Just another site" # Logo subtitle
|
||||
|
||||
[Params.sidebar]
|
||||
home = "right" # Configure layout for home page
|
||||
list = "right" # Configure layout for list pages
|
||||
single = "right" # Configure layout for single pages
|
||||
# Enable widgets in given order
|
||||
widgets = ["search", "recent", "categories", "taglist"]
|
||||
|
||||
[Params.widgets]
|
||||
recent_num = 5 # Set the number of articles in the "Recent articles" widget
|
||||
tags_counter = false # Enable counter for each tag in "Tags" widget (disabled by default)
|
Loading…
Add table
Add a link
Reference in a new issue