Compare commits
2 Commits
75d572b501
...
06698c7799
| Author | SHA1 | Date |
|---|---|---|
|
|
06698c7799 | |
|
|
386284796b |
|
|
@ -1,3 +1,71 @@
|
||||||
baseURL = 'http://example.org/'
|
baseURL = 'https://blog.mineral.town/'
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
title = 'My New Hugo Site'
|
title = 'mineral town blog'
|
||||||
|
theme = 'mineral'
|
||||||
|
paginate = 5
|
||||||
|
|
||||||
|
[params]
|
||||||
|
# dir name of your main content (default is `content/posts`).
|
||||||
|
# the list of set content will show up on your index page (baseurl).
|
||||||
|
contentTypeName = "posts"
|
||||||
|
|
||||||
|
# ["orange", "blue", "red", "green", "pink"]
|
||||||
|
themeColor = "orange"
|
||||||
|
|
||||||
|
# if you set this to 0, only submenu trigger will be visible
|
||||||
|
showMenuItems = 2
|
||||||
|
|
||||||
|
# show selector to switch language
|
||||||
|
showLanguageSelector = false
|
||||||
|
|
||||||
|
# set theme to full screen width
|
||||||
|
fullWidthTheme = false
|
||||||
|
|
||||||
|
# center theme with default width
|
||||||
|
centerTheme = false
|
||||||
|
|
||||||
|
# set a custom favicon (default is a `themeColor` square)
|
||||||
|
# favicon = "favicon.ico"
|
||||||
|
|
||||||
|
# set post to show the last updated
|
||||||
|
# If you use git, you can set `enableGitInfo` to `true` and then post will automatically get the last updated
|
||||||
|
showLastUpdated = false
|
||||||
|
# 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
|
||||||
|
# updatedDatePrefix = "Updated"
|
||||||
|
|
||||||
|
# set all headings to their default size (depending on browser settings)
|
||||||
|
# it's set to `true` by default
|
||||||
|
# oneHeadingSize = false
|
||||||
|
|
||||||
|
[params.twitter]
|
||||||
|
# set Twitter handles for Twitter cards
|
||||||
|
# see https://developer.twitter.com/en/docs/tweets/optimize-with-cards/guides/getting-started#card-and-content-attribution
|
||||||
|
# do not include @
|
||||||
|
creator = ""
|
||||||
|
site = ""
|
||||||
|
|
||||||
|
[languages]
|
||||||
|
[languages.en]
|
||||||
|
languageName = "English"
|
||||||
|
title = "mineral town blog"
|
||||||
|
subtitle = "a blog for friends of mineral town"
|
||||||
|
owner = "steven"
|
||||||
|
keywords = ""
|
||||||
|
copyright = "steven"
|
||||||
|
menuMore = "Show more"
|
||||||
|
readMore = "Read more"
|
||||||
|
readOtherPosts = "Read other posts"
|
||||||
|
newerPosts = "Newer posts"
|
||||||
|
olderPosts = "Older posts"
|
||||||
|
missingContentMessage = "Page not found..."
|
||||||
|
missingBackButtonLabel = "Back to home page"
|
||||||
|
|
||||||
|
[languages.en.params.logo]
|
||||||
|
logoText = "mineral town blog"
|
||||||
|
logoHomeLink = "/"
|
||||||
|
|
||||||
|
[languages.en.menu]
|
||||||
|
[[languages.en.menu.main]]
|
||||||
|
identifier = "about"
|
||||||
|
name = "About"
|
||||||
|
url = "/about"
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,10 @@
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
|
||||||
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||||
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||||
|
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;600&display=swap" rel="stylesheet">
|
||||||
|
|
||||||
<link rel="stylesheet" href="css/normalize.css">
|
<link rel="stylesheet" href="css/normalize.css">
|
||||||
<link rel="stylesheet" href="css/skeleton.css">
|
<link rel="stylesheet" href="css/skeleton.css">
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,7 @@ body {
|
||||||
font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
|
font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
font-family: 'Fira Code', monospace;
|
||||||
color: #222; }
|
color: #222; }
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue