Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codle/ivy-ghost
A clean ghost theme based on ivy theme.
https://github.com/codle/ivy-ghost
ghost ghost-theme
Last synced: 13 days ago
JSON representation
A clean ghost theme based on ivy theme.
- Host: GitHub
- URL: https://github.com/codle/ivy-ghost
- Owner: Codle
- Created: 2021-10-07T09:41:35.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-15T17:18:18.000Z (about 3 years ago)
- Last Synced: 2024-11-10T12:49:37.130Z (2 months ago)
- Topics: ghost, ghost-theme
- Language: Handlebars
- Homepage:
- Size: 125 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ivy-Ghost
A clean ghost theme.
Live Demo: [https://codle.net](https://codle.net)
## Comment
Ivy-Ghost used [utteranc.es](https://utteranc.es/) as blog comment system. You can add and modify
following codes to display it on blog.```javascript
(function() {
// 匿名函数,防止污染全局变量
var utterances = document.createElement('script');
utterances.type = 'text/javascript';
utterances.async = true;
utterances.setAttribute('issue-term','pathname')
utterances.setAttribute('theme','github-light')
utterances.setAttribute('repo','[YOUR REPO ADDRESS]')
utterances.crossorigin = 'anonymous';
utterances.src = 'https://utteranc.es/client.js';
// content 是要插入评论的地方
document.getElementById('comment').appendChild(utterances);
})();```