Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
67 lines (56 sloc)
1.53 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| baseURL = "http://example.com/" | |
| languageCode = "en-us" | |
| title = "Minimal" | |
| theme = "minimal" | |
| disqusShortname = "username" # delete this to disable disqus comments | |
| googleAnalytics = "" | |
| [params] | |
| author = "Calin Tataru" | |
| description = "Personal blog theme powered by Hugo" | |
| githubUsername = "#" | |
| accent = "red" | |
| showBorder = true | |
| backgroundColor = "white" | |
| font = "Raleway" # should match the name on Google Fonts! | |
| highlight = true | |
| highlightStyle = "default" | |
| highlightLanguages = ["go", "haskell", "kotlin", "scala", "swift"] | |
| [[menu.main]] | |
| url = "/" | |
| name = "Home" | |
| weight = 1 | |
| [[menu.main]] | |
| url = "/about/" | |
| name = "About" | |
| weight = 2 | |
| [[menu.main]] | |
| url = "/post/" | |
| name = "Posts" | |
| weight = 3 | |
| [[menu.main]] | |
| url = "/project/" | |
| name = "Projects" | |
| weight = 4 | |
| # Social icons to be shown on the right-hand side of the navigation bar. | |
| # The "name" field should match the name of the icon in Font Awesome. | |
| # The list of available icons can be found at http://fontawesome.io/icons. | |
| [[menu.icon]] | |
| url = "mailto:me@example.com" | |
| name = "fas fa-envelope" | |
| weight = 1 | |
| [[menu.icon]] | |
| url = "https://github.com/username/" | |
| name = "fab fa-github" | |
| weight = 2 | |
| [[menu.icon]] | |
| url = "https://twitter.com/username/" | |
| name = "fab fa-twitter" | |
| weight = 3 | |
| [[menu.icon]] | |
| url = "https://www.linkedin.com/in/username/" | |
| name = "fab fa-linkedin" | |
| weight = 4 | |
| [[menu.icon]] | |
| url = "https://www.stackoverflow.com/username/" | |
| name = "fab fa-stack-overflow" | |
| weight = 5 |