Jekyll 기반의 GitHub Page 생성 13

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(6) - Google Search Console 활용

robots.txt User-agent: * Allow: / Sitemap: https://유저명.github.io/sitemap.xml sitemap.xml --- layout: null --- {% for post in site.posts %} {{ site.url }}{{ post.url }}.html {% if post.lastmod == null %} {{ post.date | date_to_xmlschema }} {% else %} {{ post.lastmod | date_to_xmlschema }} {% endif %} {% if post.sitemap.changefreq == null %} weekly {% else %} {{ post.sitemap.changefreq }} {% endif..

개발(Web)/VCS 2021.03.15

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(5) - lunr.js를 이용한 Search 기능 추가 (2)

lunr.js Jekyll 기반의 GitHub Page 생성(5) - lunr.js를 이용한 Search 기능 추가 Jekyll 기반의 GitHub Page 생성은 여러 절로 구성되어 있습니다. Jekyll 기반의 GitHub Page 생성(1) - 환경설정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 moon9342.github.io search.js (function() { function displaySearchResults(results, store) { var searchResults = document.getElementById('search-results'); if (results...

개발(Web)/VCS 2021.03.14

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(5) - lunr.js를 이용한 Search 기능 추가 (1)

site-nav.html {% if site.facebook %} {% include facebook.html %} {% endif %} {% if site.twitter %} {% include twitter.html %} {% endif %} {% if site.subscribers %} Search {% endif %} default.html {% if site.subscribers %} {% if site.logo %} {% endif %} Search {{ site.title }} lunr.js를 이용한 posts 검색 {% include subscribe-form.html placeholder="keyword" %} {% endif %} subscribe-form.html search.html..

개발(Web)/VCS 2021.03.14

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(4) - rouge를 이용한 syntax highlighting

rouge 설치 rouge 적용 ~~~javascript function syntaxHighlight(code) { var foo = 'Hello World'; var bar = 100; } ~~~ 출처 : Jekyll 기반의 GitHub Page 생성(4) - rouge를 이용한 syntax highlighting Jekyll 기반의 GitHub Page 생성은 여러 절로 구성되어 있습니다. Jekyll 기반의 GitHub Page 생성(1) - 환경설정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 moon9342.github.io

개발(Web)/VCS 2021.03.13

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 설정

폰트 적용 Font Awesome 적용 깃허브 페이지 포스팅 (2) Font Awesome Icon Font Awesome Icon Font Awesome Icon List Introduction 블로그나 사이트 작성 시 icon 이미지들이 많이 필요하게 되는데 이 아이콘을 마치 폰트처럼 사용할 수 있도록 서비스를 제공하는 곳이 있습니다. Font Aw.. shinye0213.tistory.com 출처 : Font Awesome Icon List Introduction 블로그나 사이트 작성 시 icon 이미지들이 많이 필요하게 되는데 이 아이콘을 마치 폰트처럼 사용할 수 있도록 서비스를 제공하는 곳이 있습니다. Font Awesome이라는 곳인데 이 곳에서 제 moon9342.github.io Jekyl..

개발(Web)/VCS 2021.03.13

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-6) publishing

css 적용 깃허브(GitHub) 회원가입 게시판(JSP Model1) 깃/깃허브(Git/GitHub) 시작하기 0. 깃허브(GitHub) 회원가입하기 * 회원가입 절차는 아래 영상을 참고했다. Ⅰ. 깃허브에 깃저장소(repository) 만들기 * 깃저장소를 만드는 절차는 아래 영상을 참고했다. Ⅱ. 깃(Git) 설치하기 Git - Dow shinye0213.tistory.com 이미 가입해서 영상으로 설명 대체 remote repository 생성 깃(Git) 설치 게시판(JSP Model1) 깃/깃허브(Git/GitHub) 시작하기 0. 깃허브(GitHub) 회원가입하기 * 회원가입 절차는 아래 영상을 참고했다. Ⅰ. 깃허브에 깃저장소(repository) 만들기 * 깃저장소를 만드는 절차는 아래 ..

개발(Web)/VCS 2021.03.12

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-5) post목차 설정

python-table-of-contents.html Python 강좌는 여러 절로 구성되어 있습니다. Python 강좌(1) - Python 기본 Python 강좌(2) - Python 제어문 연관 포스트 작성 custom.css /* Search 결과화면을 위한 CSS 설정 시작 */ ul.mylist li, ol.mylist li { padding: 5px 0px 5px 5px; margin-bottom: 5px; border-bottom: 1px solid #efefef; font-size: 12px; } ul.mylist li:last-child, ol.mylist li:last-child { border-bottom: 0px; } ul.mylist li, ol.mylist li { -webki..

개발(Web)/VCS 2021.03.07

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-4) Archive설정 및 이미지설정 (2)

archive.md --- layout: page current: archive title: All Posts navigation: true logo: class: page-template subclass: 'post page' --- {%for post in site.posts %} {% unless post.next %} {{ post.date | date: '%Y' }} {% else %} {% capture year %}{{ post.date | date: '%Y' }}{% endcapture %} {% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %} {% if year != nyear %} {{ post.date | date:..

개발(Web)/VCS 2021.03.03

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-3) 메뉴와 글 올리기

navigation.html 수정 home about project study toy All Posts Tag별 Posts index.md 수정 _posts 폴더 정리 글 작성 --- layout: post current: post cover: assets/built/images/python-logo.png navigation: True title: Python 강좌(1) - Python 기본 date: 2018-09-27 16:40:00 tags: [python] class: post-template subclass: 'post tag-python' author: moon9342 --- 출처 : Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반..

개발(Web)/VCS 2021.03.02

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-2) author와 tags 설정

authors.yml 수정 moon9342 : username: moon9342 # user name : martin name: moon9342 # user full name : Martin Luther King url_full: # Homepage url url: bio: 얼큰우동TV, 쉽게배우는 IT(Programming,Machine Learning,금융) # 회사정보 picture: assets/built/images/economy-author-logo.jpg # author image facebook: # facebook ID twitter: # twitter ID cover: False tags.yml 수정 jekyll : name: jekyll description: False cover: ..

개발(Web)/VCS 2021.03.01

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(2-1) - 환경설정파일

_config.yml 수정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성은 여러 절로 구성되어 있습니다. Jekyll 기반의 GitHub Page 생성(1) - 환경설정 Jekyll 기반의 GitHub Page 생성(2) - 블로그 수정 & Publishing Jekyll 기반의 GitHub Page 생성(3) - 웹 폰트 moon9342.github.io # Jekyll configuration markdown: kramdown # kramdown : markdown의 개조판. # markdown에서 불편한 사항을 개선한 형태. # MyData owner: name: SungHoon Moon avatar: pho..

개발(Web)/VCS 2021.03.01

[Git/GitHub] Jekyll 기반의 GitHub Page 생성(1) - 환경설정

Ⅰ. Ruby 설치 Downloads Which version to download? If you don’t know what version to install and you’re getting started with Ruby, we recommend that you use the Ruby+Devkit 2.7.X (x64) installer. It provides the biggest number of compatible gems and installs the MSYS2 Devkit rubyinstaller.org Ⅱ. bundler 설치 Ⅲ. Jasper2 (Jekyll Themes) 설치 Jasper2 Welcome to Jasper2 Full-featured Jekyll port of Ghost’s..

개발(Web)/VCS 2021.02.28
반응형