@@ -2,3 +2,109 @@ baseURL = "http://example.org/"
22languageCode = " ko-kr"
33title = " Sat"
44theme = [" terminal" ]
5+
6+ pagination.pagerSize = 5
7+
8+ [params ]
9+ # dir name of your main content (default is `content/posts`).
10+ # the list of set content will show up on your index page (baseurl).
11+ contentTypeName = " posts"
12+
13+ # if you set this to 0, only submenu trigger will be visible
14+ showMenuItems = 2
15+
16+ # show selector to switch language
17+ showLanguageSelector = false
18+
19+ # set theme to full screen width
20+ fullWidthTheme = false
21+
22+ # center theme with default width
23+ centerTheme = false
24+
25+ # if your resource directory contains an image called `cover.(jpg|png|webp)`,
26+ # then the file will be used as a cover automatically.
27+ # With this option you don't have to put the `cover` param in a front-matter.
28+ autoCover = true
29+
30+ # set post to show the last updated
31+ # If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
32+ showLastUpdated = false
33+
34+ # Provide a string as a prefix for the last update date. By default, it looks like this: 2020-xx-xx [Updated: 2020-xx-xx] :: Author
35+ # updatedDatePrefix = "Updated"
36+
37+ # whether to show a page's estimated reading time
38+ # readingTime = false # default
39+
40+ # whether to show a table of contents
41+ # can be overridden in a page's front-matter
42+ # Toc = false # default
43+
44+ # set title for the table of contents
45+ # can be overridden in a page's front-matter
46+ # TocTitle = "Table of Contents" # default
47+
48+ # Set date/time format for posts
49+ # This will impact the date/time displayed on
50+ # index.html, the posts list page, and on posts themselves
51+ # This value can also be configured per-post on front matter
52+ # If you have any issues with the timezone rendering differently
53+ # than you expected, please ensure your timezone is correctly set
54+ # on your server.
55+ # This value can be customized according to Hugo documentation:
56+ # https://gohugo.io/functions/time/format/
57+ # Default value (no changes needed):
58+ # dateFormat = "2006-01-02"
59+ # Example format, with date, time, and timezone abbreviation:
60+ # dateFormat = "2006-01-02 3:04:06 PM MST"
61+
62+
63+ [params .twitter ]
64+ # set Twitter handles for Twitter cards
65+ # see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
66+ # do not include @
67+ creator = " "
68+ site = " "
69+
70+ [languages ]
71+ [languages .en ]
72+ languageName = " English"
73+ title = " Sat"
74+
75+ [languages .en .params ]
76+ subtitle = " Sat Test Wiki"
77+ owner = " "
78+ keywords = " "
79+ copyright = " "
80+ menuMore = " Show more"
81+ readMore = " Read more"
82+ readOtherPosts = " Read other posts"
83+ newerPosts = " Newer posts"
84+ olderPosts = " Older posts"
85+ missingContentMessage = " Page not found..."
86+ missingBackButtonLabel = " Back to home page"
87+ minuteReadingTime = " min read"
88+ words = " words"
89+
90+ [languages .en .params .logo ]
91+ logoText = " Terminal"
92+ logoHomeLink = " /"
93+
94+ [languages .en .menu ]
95+ [[languages .en .menu .main ]]
96+ identifier = " about"
97+ name = " About"
98+ url = " /about"
99+ [[languages .en .menu .main ]]
100+ identifier = " showcase"
101+ name = " Showcase"
102+ url = " /showcase"
103+
104+ [module ]
105+ # In case you would like to make changes to the theme and keep it locally in you repository,
106+ # uncomment the line below (and correct the local path if necessary).
107+ # --
108+ # replacements = "github.com/panr/hugo-theme-terminal/v4 -> themes/terminal"
109+ [[module .imports ]]
110+ path = ' github.com/panr/hugo-theme-terminal/v4'
0 commit comments