1.0.2 • Published 6 years ago

gitbook-plugin-theme-xformation-sectionfy v1.0.2

Weekly downloads
4
License
-
Repository
github
Last release
6 years ago

GitBook Theme for header and footer

This is a theme which adds header and footer in your gitbook. It adds a logo of your company. It also adds links to your header and footer if you need.

To use it in your gitbook, add it to your book.json

{
    "plugins": ["collapse-expand-chapters"]
}

To add links to header and footer, and logo to header

{
    "plugins": ["collapse-expand-chapters"],
    "pluginsConfig": {
		"theme-sectionfy": {
			"title": "Git Info book title",
			"logo": "/assets/300-dpi-high-resolution-logo.png",
			"favicon": "/assets/home.png",
			"footer": {
				"copyright-text": "©2017 Resereved for world",
				"links": [
					{
						"title": "Home",
						"link": "/home"
					},
					{
						"title": "About",
						"link": "/about"
					}
				]
			},
			"header":{
				"links": [
					{
						"title": "Home",
						"link": "/home"
					},
					{
						"title": "About",
						"link": "/about"
					}
				]
			}
		}
	}
}