2020-09-02 17:34:02 +00:00
+++
title = "DeepThought"
description = "A simple blog theme focused on writing powered by Bulma and Zola."
template = "theme.html"
2021-08-18 13:32:46 +00:00
date = 2021-08-18T01:00:57-07:00
2020-09-02 17:34:02 +00:00
[extra]
2021-08-18 13:32:46 +00:00
created = 2021-08-18T01:00:57-07:00
updated = 2021-08-18T01:00:57-07:00
2020-09-02 17:34:02 +00:00
repository = "https://github.com/RatanShreshtha/DeepThought.git"
homepage = "https://github.com/RatanShreshtha/DeepThought"
minimum_version = "0.9.0"
license = "MIT"
2021-02-03 12:13:49 +00:00
demo = "https://deepthought-theme.netlify.app/"
2020-09-02 17:34:02 +00:00
[extra.author]
name = "Ratan Kulshreshtha"
homepage = "https://ratanshreshtha.dev"
+++
# DeepThought
2021-02-18 21:33:11 +00:00
A simple blog theme focused on writing powered by Bulma and Zola.
2020-09-02 17:34:02 +00:00
![DeepThought ](./screenshot.png )
2021-02-18 21:33:11 +00:00
## Live Demo
Live version of the website is available at [here ](https://deepthought-theme.netlify.app/ )
2020-09-02 17:34:02 +00:00
## Installation
2021-02-18 21:33:11 +00:00
Get [Zola ](https://www.getzola.org/ ) and follow their guide on [installing a theme ](https://www.getzola.org/documentation/themes/installing-and-using-themes/ ).
2020-09-02 17:34:02 +00:00
Make sure to add `theme = "DeepThought"` to your `config.toml`
2021-02-18 21:33:11 +00:00
**Check zola version (only 0.9.0+)**
2020-09-02 17:34:02 +00:00
Just to double-check to make sure you have the right version. It is not supported to use this theme with a version under 0.9.0.
2021-02-18 21:33:11 +00:00
## How to serve?
Go into your sites directory, and type `zola serve` . You should see your new site at `localhost:1111` .
2020-09-02 17:34:02 +00:00
2021-02-18 21:33:11 +00:00
**NOTE** : you must provide the theme options variables in `config.toml` to serve a functioning site
## Deployment
2020-09-02 17:34:02 +00:00
[Zola ](https://www.getzola.org ) already has great documentation for deploying to [Netlify ](https://www.getzola.org/documentation/deployment/netlify/ ) or [Github Pages ](https://www.getzola.org/documentation/deployment/github-pages/ ). I won't bore you with a regurgitated explanation.
2021-02-18 21:33:11 +00:00
## Theme Options
2020-09-02 17:34:02 +00:00
```toml
2021-02-18 21:33:11 +00:00
navbar_items = [
{ url = "$BASE_URL/", name = "Home" },
{ url = "$BASE_URL/posts", name = "Posts" },
{ url = "$BASE_URL/docs", name = "Docs" },
{ url = "$BASE_URL/tags", name = "Tags" },
{ url = "$BASE_URL/categories", name = "Categories" },
]
# Add links to favicon, you can use https://realfavicongenerator.net/ to generate favicon for your site
2020-09-02 17:34:02 +00:00
[extra.favicon]
favicon_16x16 = "/icons/favicon-16x16.png"
favicon_32x32 = "/icons/favicon-32x32.png"
apple_touch_icon = "/icons/apple-touch-icon.png"
safari_pinned_tab = "/icons/safari-pinned-tab.svg"
webmanifest = "/icons/site.webmanifest"
# Author details
[extra.author]
name = "DeepThought"
avatar = "/images/avatar.png"
2021-02-18 21:33:11 +00:00
# Social links
2020-09-02 17:34:02 +00:00
[extra.social]
2021-02-18 21:33:11 +00:00
email = "< email_id > "
2020-09-02 17:34:02 +00:00
facebook = "< facebook_username > "
github = "< github_username > "
2021-02-18 21:33:11 +00:00
gitlab = "< gitlab_username > "
2020-09-02 17:34:02 +00:00
keybase = "< keybase_username > "
linkedin = "< linkedin_username > "
stackoverflow = "< stackoverflow_userid > "
twitter = "< twitter_username > "
# To add google analytics
[extra.analytics]
google = "< your_gtag > "
# To add hyvor comments
[extra.commenting]
2021-02-18 21:33:11 +00:00
hyvor = "< your_hyvor_website_id > "
2020-09-02 17:34:02 +00:00
# To enable mapbox maps
[extra.mapbox]
access_token = "< your_access_token > "
```
## Features
2021-02-18 21:33:11 +00:00
- [x] Dark Mode
- [x] Pagination
- [x] Search
- [x] Charts
- [x] Maps
- [x] Diagrams
- [x] Galleria
- [x] Analytics
- [x] Comments
- [x] Categories
- [x] Social Links
- [x] Post Sharing
2020-09-02 17:34:02 +00:00