Disqus 기반 댓글 기능 넣기
Disqus 댓글 생성
https://disqus.com/
- 회원가입 후 “Add Disqus To Site” 라는 메뉴 클릭 *
- “Ready to install Disqus?” 라는 메시지 아래의 파란 버튼 클릭 *
- “I want to install Disqus on my site” 를 클릭
- 값을 적당히 입력 후 Jekyll 선택
- configure 선택
- url 등 값 이력 후 complete setup 클릭
생성한 댓글 jekyll에 붙이기
disqus 댓글 정보 website Name : hello
일단 저는 간편해 보여서 hydeout 템플릿을 적용했습니다 hydeout 템플릿 기반으로 적용 방법을 설명하자면
- /_includes/disqus.html이 있는데 소스를 보면 아래와 같이 property를 참조하고 있어 _config.yml에서 해당 property를 추가해 주면 된다!
var src = '//leunge.disqus.com/embed.js';
_config.yml
...
# Setup
title: undefined
tagline: 'home'
description: ''
url: https://leunge.github.io/
author:
name: 'leunge'
...
github:
repo: https://github.com/leunge/leunge.github.io
# Disqus Comments
disqus:
shortname: hello
Comments