Chayoung You

Results 199 comments of Chayoung You

That's weird. I can't reproduce with Ruby 2.5.0, 2.3.6. Gemfile: ``` ruby source 'https://rubygems.org' gem 'jekyll', '~> 3.6.2' gem 'jekyll-whiteglass' ``` Gemfile.lock: ``` GEM remote: https://rubygems.org/ specs: addressable (2.5.2) public_suffix...

Hi, I saw your blog source, and I think it's because of `github-pages` gem. By default, [it disallows gems that aren't whitelisted for use on GitHub Pages](https://github.com/github/pages-gem#bypassing-the-plugin-whitelist). To allow use...

As I [commented above](https://github.com/yous/whiteglass/issues/18#issuecomment-354937565), GitHub Pages doesn't support jekyll-archives. Consider using Travis CI.

I think it comes from github-pages gem. Try without it. You're using jekyll-remote-theme gem additionally, so add it to `Gemfile` and `_config.yml`.

I think then you should check your GitHub personal access token. As `categories/general`, `tags/github-pages`, `tags/jekyll` directories are generated properly, `jekyll build` succeeded. Go to https://github.com/settings/tokens, and check whether your token...

Nice! I'm considering making this theme work even if jekyll-archives isn't available.

Deploying to GitHub Pages using Travis CI is much easier with `deploy` key in `.travis.yml`. Please start from the updated section of [README.md](https://github.com/yous/whiteglass/blob/master/README.md#deployment-to-github-pages-using-travis-ci). Also take a look at [.travis.yml](https://github.com/yous/whiteglass/blob/master/.travis.yml) of...

Deploying to GitHub Pages is now much easier by using GitHub Actions. See . You only have to copy `.github/workflows/main.yml`, and then set secret `JEKYLL_PAT` to your repository.

Hi, I made [whiteglass-template](https://github.com/yous/whiteglass-template), so you can try it.

You can make a new Jekyll site repository by clicking "Use this template" button on [whiteglass-template](https://github.com/yous/whiteglass-template). If you want to edit existing _config.yaml file to use whiteglass, please take a...