Created
January 18, 2019 07:03
-
-
Save WooilKim/01a713af15c7dbddcdc83cae4069d5cf to your computer and use it in GitHub Desktop.
hugo-icarus-theme config.toml
This file contains hidden or 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
| aseurl = "https://wooilkim.github.io/" | |
| languageCode = "en-us" | |
| title = "Wooil" | |
| # Enable comments by entering your Disqus shortname | |
| disqusShortname = "WooilKim" | |
| # Enable Google Analytics by entering your tracking code | |
| googleAnalytics = "UA-132678781-1" | |
| # Define the number of posts per page | |
| paginate = 10 | |
| footnotereturnlinkcontents = "↩" | |
| theme = "icarus" | |
| # Comment the themesDir option if you use this theme in production | |
| themesDir = "./themes/" | |
| [permalinks] | |
| post = "/:year/:month/:day/:slug" | |
| [params] | |
| # Tell me who you are | |
| author = "Wooil Kim" | |
| bio = "Blogger - Programmer - Researcher" | |
| location = "Seoul, Republic of Korea" | |
| site_description = "" | |
| copyright = "Powered by [Hugo](//gohugo.io). Theme by [PPOffice](http://github.com/ppoffice)." | |
| avatar = "css/images/avatar.png" | |
| # Enter your email address to display your Gravatar icon in the profile. If not set the theme | |
| # will fallback to the avatar. | |
| gravatar = "[email protected]" | |
| logo = "css/images/logo.png" | |
| disable_mathjax = false # set to true to disable MathJax | |
| # define which types of pages should be shown. By default the type with the most regular pages | |
| mainSections = ["post"] | |
| # Format dates with Go's time formatting | |
| date_format = "2006-01-02" | |
| # Add custom assets with their paths relative to the static folder | |
| custom_css = [] | |
| custom_js = [] | |
| # Create custom menu entries by defining a label and a link for | |
| # them. Since you can also link posts, you've the option the | |
| # place the links before or after them. | |
| # | |
| # E.g.: "Home" appears before all linked posts in the menu | |
| # and "Tags" / "Categories" after them. | |
| [[params.menu]] | |
| before = true | |
| label = "Home" | |
| link = "/" | |
| [[params.menu]] | |
| before = false | |
| label = "Tags" | |
| link = "tags/" | |
| [[params.menu]] | |
| before = false | |
| label = "Categories" | |
| link = "categories/" | |
| [[params.menu]] | |
| before = false | |
| label = "About" | |
| link = "about/" | |
| # Enter a link for the follow button on the left | |
| [params.profile] | |
| follow_button = "https://github.com/wooilkim" | |
| [social] | |
| # Add your social network accounts to the profile section on the left | |
| # by entering your username. The links to your account will be | |
| # created automatically. | |
| github = "wooilkim" | |
| gitlab = "" | |
| bitbucket = "" | |
| jsfiddle = "" | |
| codepen = "" | |
| foursquare = "" | |
| dribbble = "" | |
| deviantart = "" | |
| behance = "" | |
| flickr = "" | |
| instagram = "" | |
| youtube = "" | |
| vimeo = "" | |
| vine = "" | |
| medium = "" | |
| wordpress = "" | |
| tumblr = "" | |
| xing = "" | |
| linkedin = "[email protected]" | |
| slideshare = "" | |
| stackoverflow = "" | |
| reddit = "" | |
| pinterest = "" | |
| googleplus = "" | |
| facebook = "" | |
| facebook_admin = "" | |
| twitter_domain = "" | |
| twitter = "" | |
| # Enable and disable widgets for the right sidebar | |
| [params.widgets] | |
| recent_articles = true | |
| categories = true | |
| tags = true | |
| tag_cloud = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment