hugo theme noteworthy
1.0.0
주목할만한 것은 작가와 블로거를 위한 미니멀한 Hugo 테마입니다.
Hugo 사이트의 루트 디렉터리로 이동하여 이 저장소를 복제하세요.
git clone https://github.com/kimcc/hugo-theme-noteworthy.git themes/noteworthy
자세한 내용은 Hugo 문서를 참고하세요.
이 테마에 포함된 이미지 크기 조정 단축 코드를 사용하여 이미지를 추가하려면 포스트 번들을 생성해야 합니다. 게시물을 위한 폴더를 만들고 Markdown 파일과 이미지를 그 안에 넣은 다음 Markdown 파일 이름을 index.md
로 바꿉니다. 예를 들어:
my-new-post
- index.md
- image1.jpg
- image2.png
그런 다음 다음과 같은 단축 코드를 사용하여 Markdown 파일 내에 이미지를 추가할 수 있습니다.
{{< resize-image src="image1.jpg" alt="My first image" >}}
다음과 같이 캡션을 추가합니다.
{{< resize-image src="image2.png" alt="My second image" caption="My caption" >}}
게시물이 잘릴 때 "더 읽기" 링크가 표시되도록 하려면 구성 파일에서 showReadMore = false
true
로 설정하세요.
config.toml
파일의 params
섹션에서 소셜 미디어 계정에 대한 링크를 추가할 수 있습니다. 포함하고 싶지 않은 항목을 제거하면 해당 아이콘이 사이트에서 사라집니다.
# Main
email = "#"
facebook = "#"
twitter = "#"
instagram = "#"
tumblr = "#"
reddit = "#"
pinterest = "#"
youtube = "#"
vimeo = "#"
weibo = "#"
vk = "#"
linkedin = "#"
# Writing
medium = "#"
blogger = "#"
wordpress = "#"
# Creative & Visual
dribbble = "#"
behance = "#"
deviantart = "#"
flickr = "#"
# Audio & Music
soundcloud = "#"
# Programming
github = "#"
stackoverflow = "#"
gitlab = "#"
codepen = "#"
# Academic
googlescholar = "#"
impactstory = "#"
orcid = "#"
# Travel
googlemaps = "#"
tripadvisor = "#"
config.toml
파일에 Disqus 단축 이름과 Google Analytics 식별자를 추가하세요.
# Add your Disqus shortname here.
disqusShortname = ""
# Add your Google Analytics identifier: UA-XXXXXXXX-X
googleAnalytics = ""
게시물에 Ko-fi 버튼을 활성화하려면 구성 파일에서 활성화하고 식별자를 추가하세요.
# Set enableKofi to true to enable the Ko-fi support button. Add your Ko-fi ID to link to your account.
enableKofi = true
kofi = ""
MIT 라이센스에 따라 출시되었습니다.