diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..1201b23 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "themes/raditian-free-hugo-theme"] + path = themes/raditian-free-hugo-theme + url = https://github.com/chewing-git/raditian-free-hugo-theme +[submodule "KimSungHye.github.io"] + path = KimSungHye.github.io + url = https://github.com/KimSungHye/KimSungHye.github.io +[submodule "public"] + path = public + url = https://github.com/KimSungHye/KimSungHye.github.io diff --git a/config.toml b/config.toml index 1d7c819..4d512e7 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,70 @@ -baseURL = 'http://example.org/' -languageCode = 'en-us' -title = 'My New Hugo Site' +baseURL = "https://<본인id>.github.io" # TODO: github.io 주소 수정 +languageCode = "en-us" +theme = "raditian-free-hugo-theme" + +# Plugins +[params.plugins] + + # CSS Plugins + [[params.plugins.css]] + URL = "css/main.css" + [[params.plugins.css]] + URL = "css/rad-icons.css" + [[params.plugins.css]] + URL = "css/custom.css" + + # JS Plugins + [[params.plugins.js]] + URL = "js/rad-animations.js" + [[params.plugins.js]] + URL = "js/sticky-header.js" + [[params.plugins.js]] + URL = "js/library/fontfaceobserver.js" + + +# navigation +[menu] + [[menu.header]] + name = "About" + URL = "#about" + weight = 2 + + [[menu.header]] + name = "Projects" + URL = "#projects" + weight = 3 + + [[menu.header]] + name = "Contact" + URL = "#contact" + weight = 4 + + + [[menu.footer]] + name = "About" + URL = "#about" + weight = 2 + + [[menu.footer]] + name = "projects" + URL = "#projects" + weight = 3 + + [[menu.footer]] + name = "Contact" + URL = "#contact" + weight = 4 + + +[params] + + sections = ["showcase", "about", "education", "projects", "contact"] #, "newsletter"] + + googleTagManagerID = "GTM-000000" # Google Analytics works with Google Tag Manager + + [params.logo] + text1 = "이름" # TODO: 이름 추가 + text2 = "성" # TODO: 성 추가 + + [params.footer] + copyright = "© All rights reserved." diff --git a/data/homepage.yml b/data/homepage.yml new file mode 100644 index 0000000..8e8de09 --- /dev/null +++ b/data/homepage.yml @@ -0,0 +1,96 @@ +# homepage +homepage: + head: + title: "Home | [이름]" # TODO: 이름 추가 +# showcase +showcase: + enable: true + title: "Hello, I’m [이름]" # TODO: 이름 추가 + subtitle: "Developer" + description: "[소개]" # TODO: 소개 추가 + image: + alt: "Showcase keyboard and mouse image" + x: "img/showcase/showcase.png" + _2x: "img/showcase/showcase@2x.png" + + socialLinks: + - icon: "linkedin" + URL: "https://www.linkedin.com/" # TODO: linkedin 추가 + + - icon: "github" + URL: "https://github.com/" # TODO: github 추가 + +# about +about: + enable: true + title: "Who am I?" + content: '

+ [소개내용 1문단] +

+

+ [소개내용 2문단] +

' # TODO: 소개내용 추가 + button: + icon: "icon-smile-fill" + btnText: "About Me" + URL: "https://www.linkedin.com" # TODO: linkedin 추가 + image: + x: "img/who-am-i/user-picture.png" # TODO: 프로필 이미지 주소 변경 + _2x: "img/who-am-i/user-picture@2x.png" + +# education +education: + enable: true + title: "Education" + items: # TODO: 학력 추가 + - university: "University of 학교명" + year: "[입학년도]-[졸업년도]" + degree: "[학위 및 전공]" + +# projects +projects: + title: "Projects" + enable: true + + works: # TODO: 프로젝트 추가 + - title: "[프로젝트1]" + description: "[프로젝트 1 설명]" + button: + icon: "icon-arrow-right" + btnText: "Case Study" + URL: "#" + image: + x: "img/works/radity-finance.jpg" + _2x: "img/works/radity-finance@2x.jpg" + is_even: true + + - title: "[프로젝트2]" + description: "[프로젝트 2설명]" + button: + icon: "icon-arrow-right" + btnText: "Case Study" + URL: "#" + image: + x: "img/works/swissfintech.jpg" + _2x: "img/works/swissfintech@2x.jpg" + is_even: false + +# contact +contact: + enable: true + title: "Contact" + form: + method: "POST" + action: "#" + full_name: "Full Name" + email: "Email Address" + message: "Type Your Message Here" + email: + title: "Email" + email: '[email 주소]' # TODO: 이메일주소 추가 + address: + title: "Address" + address: "[주소 (지역명)]" # TODO: 주소 추가 + button: + icon: "icon-mail-fill" + btnText: "Send Message" diff --git a/public b/public new file mode 160000 index 0000000..a982b50 --- /dev/null +++ b/public @@ -0,0 +1 @@ +Subproject commit a982b508f1c317dd1bd5fa61b45f51495c215a8b diff --git a/themes/raditian-free-hugo-theme b/themes/raditian-free-hugo-theme new file mode 160000 index 0000000..b4928e7 --- /dev/null +++ b/themes/raditian-free-hugo-theme @@ -0,0 +1 @@ +Subproject commit b4928e7d6be2fc0f6cd5db022cc7441019400252