mirror of
https://github.com/Aroy-Art/Aroy-Art-Site.git
synced 2024-12-26 09:04:23 +01:00
Add: new site config file
This commit is contained in:
parent
42d155917f
commit
fd692b1cb4
2 changed files with 191 additions and 205 deletions
205
config.toml
205
config.toml
|
@ -1,205 +0,0 @@
|
|||
baseURL = "https://example.com/"
|
||||
languageCode = "en-gb"
|
||||
title = "Wisnuwiry"
|
||||
theme = "personal-site"
|
||||
summaryLength = 10
|
||||
|
||||
[Author] # Used in authorbox
|
||||
name = "Aroy"
|
||||
bio = ""
|
||||
avatar = "img/avatar.png"
|
||||
job = "Hobby programmer and artist."
|
||||
gender = "male"
|
||||
email = "Aroy-Art@pm.me"
|
||||
|
||||
|
||||
[Params]
|
||||
subTitle = "Personal site, Blog, and Portfolio"
|
||||
description = "I am a hobby programmer and artist."
|
||||
images = ["img/avatar.png"]
|
||||
copyright = "Aroy-Art" # Copyright holder, otherwise will use .Site.Title
|
||||
opengraph = true # Enable OpenGraph if true
|
||||
twitter_cards = true # Enable Twitter Cards if true
|
||||
mainSections = ["post"] # Set main page sections
|
||||
dateFormat = "January 02, 2006" # Change the format of dates
|
||||
# customCSS = ["css/custom.css"] # Include custom CSS files
|
||||
customJS = []
|
||||
mainMenuAlignment = "right" # Align main menu (desktop version) to the right side
|
||||
authorbox = true # Show authorbox at bottom of single pages if true
|
||||
comments = true # Enable comments for all site pages
|
||||
related = true # Enable Related content for single pages
|
||||
relatedMax = 5
|
||||
mathjax = false # Enable MathJax for all site pages
|
||||
hideNoPostsWarning = false # Don't show no posts empty state warning in main page, if true
|
||||
fontUnit = "em"
|
||||
largestFontSize = 2.5
|
||||
smallestFontSize = 1
|
||||
googleSearchConsole = ""
|
||||
# GoogleAnalytics = ""
|
||||
# fb_admins =
|
||||
# fb_app_id =
|
||||
paginateLength = 5
|
||||
# adsenseId =
|
||||
|
||||
# Google Search custom, more info: https://cse.google.com/cse/all
|
||||
customSearchId = "004021659876411083349:a2ysxpichpc"
|
||||
|
||||
endMessagePost = "Wrong content? "
|
||||
|
||||
# Link repo to edit content
|
||||
editContentPageLink = "https://github.com/Aroy-Art/Aroy-Art-Site/tree/main/conten"
|
||||
|
||||
# Formspree form contact id, more info: https://cse.google.com/cse/all
|
||||
formspreeId = ""
|
||||
|
||||
|
||||
|
||||
[Params.Hero]
|
||||
title = "A Personal Site By Aroy"
|
||||
desc = "Welcome to my Blog :)"
|
||||
|
||||
[Params.Entry]
|
||||
meta = ["date", "categories"] # Enable meta fields in given order
|
||||
toc = true # Enable Table of Contents
|
||||
tocOpen = false # Open Table of Contents block. Optional
|
||||
|
||||
[Params.Featured]
|
||||
previewOnly = false # Show only preview featured image
|
||||
|
||||
[Params.Comments]
|
||||
repository = "" # Repository to host your comment, ex: username/repo
|
||||
|
||||
# Navigation bar
|
||||
[menu]
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Post"
|
||||
pre = "📝"
|
||||
url = "/post"
|
||||
weight = 1
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Snippet"
|
||||
pre = "⚒️"
|
||||
url = "/snippet"
|
||||
weight = 2
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Project"
|
||||
pre = "🚧"
|
||||
url = "/project"
|
||||
weight = 3
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "About"
|
||||
pre = "😃"
|
||||
url = "/about"
|
||||
weight = 4
|
||||
|
||||
[[menu.main]]
|
||||
identifier = "Contact"
|
||||
pre = "🤙"
|
||||
url = "/contact"
|
||||
weight = 5
|
||||
|
||||
[Params.Breadcrumb]
|
||||
enable = true # Enable breadcrumb block globally
|
||||
homeText = "Home" # Home node text
|
||||
|
||||
[Params.Social]
|
||||
# twitter = "jhon-doe"
|
||||
# telegram = "jhon-doe"
|
||||
# instagram = "jhon-doe"
|
||||
# linkedin = "wisnu-saputra"
|
||||
github = "Aroy-Art"
|
||||
# gitlab = "jhon-doe"
|
||||
# medium = "jhon-doe"
|
||||
reddit = "https://www.github.com/Aroy-Art"
|
||||
|
||||
[Params.Share] # Entry Share block
|
||||
facebook = true
|
||||
twitter = true
|
||||
reddit = true
|
||||
telegram = true
|
||||
linkedin = true
|
||||
pinterest = true
|
||||
|
||||
# Web App Manifest settings
|
||||
# https://www.w3.org/TR/appmanifest/
|
||||
# https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
[Params.Manifest]
|
||||
name = "Aroy"
|
||||
shortName = "Aroy"
|
||||
display = "standalone"
|
||||
startUrl = "/?utm_source=homescreen"
|
||||
backgroundColor = "#8dc153"
|
||||
themeColor = "#1da1f2"
|
||||
description = "Personal Site By Aroy"
|
||||
orientation = "portrait"
|
||||
scope = "/"
|
||||
|
||||
[outputFormats]
|
||||
[outputFormats.MANIFEST]
|
||||
mediaType = "application/json"
|
||||
baseName = "manifest"
|
||||
isPlainText = true
|
||||
notAlternative = true
|
||||
|
||||
[outputs]
|
||||
home = ["HTML", "RSS", "MANIFEST"]
|
||||
|
||||
enableRobotsTXT = true
|
||||
|
||||
# Pagination
|
||||
Paginate = 3
|
||||
|
||||
|
||||
# Code
|
||||
[markup]
|
||||
defaultMarkdownHandler = "blackfriday"
|
||||
[markup.goldmark]
|
||||
[markup.goldmark.extensions]
|
||||
definitionList = true
|
||||
footnote = true
|
||||
linkify = true
|
||||
strikethrough = true
|
||||
table = true
|
||||
taskList = true
|
||||
typographer = true
|
||||
[markup.goldmark.parser]
|
||||
attribute = true
|
||||
autoHeadingID = true
|
||||
autoHeadingIDType = "github"
|
||||
[markup.goldmark.renderer]
|
||||
hardWraps = false
|
||||
unsafe = true
|
||||
xhtml = false
|
||||
[markup.blackFriday]
|
||||
angledQuotes = false
|
||||
footnoteAnchorPrefix = ""
|
||||
footnoteReturnLinkContents= ""
|
||||
fractions = true
|
||||
hrefTargetBlank = false
|
||||
latexDashes = true
|
||||
nofollowLinks = false
|
||||
noreferrerLinks = false
|
||||
plainIDAnchors = true
|
||||
skipHTML = false
|
||||
smartDashes = true
|
||||
smartypants = true
|
||||
smartypantsQuotesNBSP = false
|
||||
taskLists = true
|
||||
[markup.highlight]
|
||||
codeFences = true
|
||||
guessSyntax = true
|
||||
hl_Lines = ""
|
||||
lineNoStart = 1
|
||||
lineNos = false
|
||||
lineNumbersInTable = false
|
||||
noClasses = false
|
||||
style = "dracula"
|
||||
tabWidth = 4
|
||||
[markup.tableOfContents]
|
||||
endLevel = 6
|
||||
ordered = false
|
||||
startLevel = 2
|
191
config.yaml
Normal file
191
config.yaml
Normal file
|
@ -0,0 +1,191 @@
|
|||
###################### Hugo configuration #######################
|
||||
baseURL: ""
|
||||
languageCode: en-gb
|
||||
title: Aroy Art
|
||||
theme: BioTech
|
||||
favicon: img/favicon.png
|
||||
|
||||
# Add an S on the end of titles
|
||||
pluralizeListTitles: False
|
||||
|
||||
# Enable inline shortcodes in blog posts
|
||||
enableInlineShortcodes: True
|
||||
|
||||
# Robot.txt file
|
||||
enableRobotsTXT: True
|
||||
#################################################################
|
||||
|
||||
|
||||
##################### Default Parameters ########################
|
||||
params:
|
||||
# Site character set
|
||||
charset: utf-8
|
||||
|
||||
# Theme color for Android browsers and Vivaldi
|
||||
themeColor: '#ff00d4'
|
||||
|
||||
# Site Logo
|
||||
logo: /img/Furry-Aroy-Logo-2.1.png
|
||||
|
||||
author: Aroy
|
||||
description: I am a furry artist and programmer.
|
||||
copyright: Copyright © 2018-2022 - Design & Content by Aroy
|
||||
license: This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.
|
||||
post_share: True
|
||||
breadcrumbs: False
|
||||
to_top_button: True
|
||||
comments: True
|
||||
|
||||
# RSS Feed settings
|
||||
RSS:
|
||||
fullContents: True
|
||||
rssLimit: 100
|
||||
|
||||
# preloader:
|
||||
# enable: false
|
||||
# preloader: /img/avatar-512.png
|
||||
|
||||
cookies:
|
||||
enable: true
|
||||
expire_days: 7
|
||||
#################################################################
|
||||
|
||||
|
||||
|
||||
############################ Plugins ############################
|
||||
plugins:
|
||||
css: # css plugins
|
||||
- link: /plugins/bootstrap/bootstrap.min.css
|
||||
- link: /plugins/nerd-fonts/nerd-fonts-generated.min.css
|
||||
- link: /plugins/magnific-popup/magnific-popup.css
|
||||
- link: /plugins/slick/slick.css
|
||||
- link: https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,200;0,500;0,700;1,200;1,500;1,700&display=swap #https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap
|
||||
- link: /plugins/lightbox/lightbox.min.css
|
||||
js: # js plugins
|
||||
- link: /plugins/bootstrap/bootstrap.bundle.min.js
|
||||
- link: /plugins/jquery/jquery.min.js
|
||||
- link: /plugins/slick/slick.min.js
|
||||
- link: /plugins/magnific-popup/jquery.magnific-popup.min.js
|
||||
- link: /plugins/masonry/masonry.js
|
||||
- link: /plugins/lazy-load/lozad.min.js
|
||||
- link: /plugins/lightbox/lightbox.min.js
|
||||
#################################################################
|
||||
|
||||
|
||||
######################### Social Icons ##########################
|
||||
# Nerd Fonts icon pack : https://www.nerdfonts.com/cheat-sheet
|
||||
social:
|
||||
- icon: nf nf-fa-github_alt
|
||||
link: https://github.com/Aroy-Art
|
||||
- icon: nf nf-fa-twitter
|
||||
link: https://twitter.com/AroyArt
|
||||
- icon: nf nf-fa-reddit_alien
|
||||
link: https://www.reddit.com/user/Aroy-Art/
|
||||
- icon: nf nf-fa-instagram
|
||||
link: https://www.instagram.com/aroy_art22/
|
||||
|
||||
sketchfab:
|
||||
enable: true
|
||||
text: I am also on
|
||||
img: /images/logos/social-logos/sketchfab-logo-text.png
|
||||
link: https://sketchfab.com/Aroy-Art
|
||||
|
||||
utteranc:
|
||||
enable: true
|
||||
repo: Aroy-Art/Aroy-Art-Site-Comments
|
||||
issue_term: pathname
|
||||
label: Comment
|
||||
theme: dark-blue
|
||||
#################################################################
|
||||
|
||||
|
||||
########################### Markup ##############################
|
||||
markup:
|
||||
defaultMarkdownHandler: goldmark
|
||||
goldmark:
|
||||
extensions:
|
||||
definitionList: true
|
||||
footnote: true
|
||||
linkify: true
|
||||
strikethrough: true
|
||||
table: true
|
||||
taskList: true
|
||||
typographer: true
|
||||
parser:
|
||||
autoHeadingID: true
|
||||
autoHeadingIDType: github
|
||||
attribute:
|
||||
block: false
|
||||
title: true
|
||||
renderer:
|
||||
hardWraps: false
|
||||
unsafe: false
|
||||
xhtml: false
|
||||
highlight:
|
||||
anchorLineNos: true
|
||||
codeFences: true
|
||||
guessSyntax: false
|
||||
hl_Lines: ""
|
||||
lineAnchors: ""
|
||||
lineNoStart: 1
|
||||
lineNos: false
|
||||
lineNumbersInTable: true
|
||||
noClasses: false
|
||||
style: fruity
|
||||
tabWidth: 4
|
||||
tableOfContents:
|
||||
endLevel: 3
|
||||
ordered: false
|
||||
startLevel: 2
|
||||
#################################################################
|
||||
|
||||
|
||||
############################ Outputs ############################
|
||||
outputs:
|
||||
home:
|
||||
- HTML
|
||||
- RSS
|
||||
#################################################################
|
||||
|
||||
|
||||
######################## Navigation bar #########################
|
||||
menu:
|
||||
main:
|
||||
- name: Blog
|
||||
pre: ""
|
||||
url: blog
|
||||
weight: 1
|
||||
- name: Portfolio
|
||||
pre: ""
|
||||
url: portfolio
|
||||
weight: 2
|
||||
- name: About Me
|
||||
pre: ""
|
||||
url: about
|
||||
weight: 3
|
||||
- name: Contact
|
||||
pre: '#'
|
||||
url: contact
|
||||
weight: 4
|
||||
more:
|
||||
- name: Archive
|
||||
pre: ""
|
||||
url: archive
|
||||
weight: 3
|
||||
- name: Link Tree
|
||||
pre: ""
|
||||
url: link_tree
|
||||
weight: 1
|
||||
#################################################################
|
||||
|
||||
|
||||
###################### Language Settings ########################
|
||||
Language:
|
||||
en:
|
||||
languageName: EN
|
||||
languageCode: en-gb
|
||||
contentDir: content
|
||||
weight: 1
|
||||
home: Home
|
||||
copyright: Copyright © 2022
|
||||
#################################################################
|
Loading…
Reference in a new issue