source: tanzpartie-hugo/themes/bilberry-hugo-theme/testing/testing-example-site/config.toml @ 17397

Last change on this file since 17397 was 16971, checked in by Henrik Bettermann, 2 years ago
File size: 5.1 KB
RevLine 
[16971]1title = "My cool new Blog"
2baseURL = "https://example.com/"
3theme = "bilberry-hugo-theme"
4
5# Generate the robots.txt file for SEO
6enableRobotsTXT = true
7
8# Change to one of your content languages defined at the end.
9DefaultContentLanguage = "en"
10
11# Enable / Disable Google Analytics statistics for your site
12googleAnalytics = ""
13
14# Enable / Disable comments on the articles via Disqus.
15disqusShortname = "bilberry-hugo-theme"
16
17# Enable / Disable open link with a new tab.
18[blackfriday]
19  hrefTargetBlank = false
20
21[params]
22  # Custom CSS / JS modules that will be imported by the template.
23  # Files are relative to the static/ directory or a URL.
24  # Files are imported in the order they appear here, after
25  # theme.css and theme.js, respectively.
26  css_modules = []
27  js_modules = []
28
29  # Description and meta data for the search engines
30  author = "Lednerb"
31  description = "Bilberry Premium Theme for Hugo."
32  keywords = "blog,personal,responsive,search,font awesome,pages,posts,multilingual,highlight.js,syntax highlighting,premium,shortcuts"
33
34  # How many articles should be displayed at once?
35  paginate = 7
36
37  # Enable / Disable MathJax
38  enable_mathjax    = false
39
40  # Enable / Disable algolia search
41  algolia_search    = true
42  algolia_appId     = "Y2C4RWMPXW"
43  algolia_apiKey    = "50ea7f8c41c0ad233926e0be2b769ed1"
44  algolia_indexName = "default-content"
45    # Set this option to false if you want to search within all articles in all languages at once
46    algolia_currentLanguageOnly = true
47
48  # Media configuration
49    # let hugo automatically resize and crop your images to the correct sizes
50    # NB: When enabled the image files get renamed by adding additional information,
51    #     even if the image has the correct sizes.
52    resizeImages = true
53
54  # Header configuration
55    # your subtitle if you want to use any
56    subtitle = "Hello World! This is the most epic subtitle ever."
57
58    # if you want to use gravatar for the header image
59    gravatarEMail = "code@lednerb.de"
60
61    # set an path to the image file you want to use | overwrites gravatar
62    customImage = ""
63
64    # define the icon you want to use for the overlay for the customImage or gravatar.
65    overlayIcon = "fa-home"
66
67    # always display the top navigation (with pages and search) on non-mobile screens
68    permanentTopNav = false
69
70    # always display the top navigation when scrolling
71    # works only with permanentTopNav = true
72    stickyNav = false
73
74    # show a language chooser in the header
75    showHeaderLanguageChooser = true
76
77  # Content configuration
78    # Enable an optional pinned page to display at the top of the index
79    # pinnedPost = "/article/installing-bilberry-theme/"
80    # Set to true to pin only to the first page, false to all pages
81    # pinOnlyToFirstPage = true
82
83    # enable automatic localization of the article's PublishedDate with momentjs
84    enableMomentJs = true
85
86    # customize the date format | only works if momentjs is disabled | only works with English month names
87    # you can customize it with the options you find here:
88    # https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference
89    dateFormat = "2006-01-02"
90
91    # display the estimated reading time for an article
92    showReadingTime = false
93
94    # Minimum word count to display the Table of Contents
95    tocMinWordCount = 400
96
97  # Footer configuration
98    showFooter = true
99
100    # How many articles should be displayed at latest posts in the footer?
101    # Set to -1 to hide the 'Latest Posts' column
102    amountLatestPostsInFooter = 7
103
104    # How many categories should be displayed in the footer section?
105    # Set to -1 to hide the 'Categories' column
106    amountCategoriesInFooter = 7
107
108    # show a language chooser in the footer
109    showFooterLanguageChooser = true
110
111    # social media profile urls for the footer links
112    showSocialMedia = true
113
114    # define your links with FontAwesome 5 (only free icons are supported)
115    # all icons https://fontawesome.com/icons?d=gallery&m=free
116    # brand icons https://fontawesome.com/icons?d=gallery&s=brands&m=free
117    socialMediaLinks = [
118      { link = "https://twitter.com/TheRealLednerb", icon = "fab fa-twitter" },
119      { link = "https://github.com/Lednerb", icon = "fab fa-github" },
120    ]
121
122    # credits line configuration
123    copyrightBy = "by Lednerb"
124    copyrightUseCurrentYear = false  # set to true to always display the current year in the copyright
125    copyrightYearOverride = "2017"
126    copyrightUrl = "https://github.com/Lednerb"
127    creditsText = "Bilberry Hugo Theme"
128    creditsUrl = "https://github.com/Lednerb/bilberry-hugo-theme"
129
130
131# customize your available languages for your multi-lingual site
132# or delete the [Languages] blog to use the theme with only one supported language
133[Languages]
134  [Languages.en]
135    weight = 1
136  [Languages.de]
137    weight = 2
138    title = "Mein cooler neuer Blog"
139    subtitle = "Hallo Welt! Dies ist der epischste Untertitel aller Zeiten."
140
141# don't change anything below
142[taxonomies]
143  author   = "author"
144  tag      = "tags"
145  category = "categories"
146  series   = "series"
147
148[outputs]
149  home = [ "HTML", "JSON", "RSS" ]
150  page = [ "HTML" ]
151
152[markup]
153  [markup.tableOfContents]
154    endLevel = 5
155    ordered = false
156    startLevel = 2
Note: See TracBrowser for help on using the repository browser.