Skip to content

Instantly share code, notes, and snippets.

@StartZeroGnu
Created October 13, 2016 00:47
Show Gist options
  • Save StartZeroGnu/1db5c44da4943c617bddb03b3df959d4 to your computer and use it in GitHub Desktop.
Save StartZeroGnu/1db5c44da4943c617bddb03b3df959d4 to your computer and use it in GitHub Desktop.

$ jekyll new writers-zone

$ cd writers-zone

edit:

  • config.yml theme: writers-zone
  • gemfile gem "writers-zone", "~> 0.2"

$ bundle install (to install gem theme & dependencies)

delete index.md (paginate only work with index.html)

copy/paste all files from demo folder

$ bundle exec jekyll s

it works!!!

config.yml

  • url url: "http://startzerognu.neocities.org"
  • baseurl /writers-zone

$ JEKYLL_ENV=production bundle exec jekyll b

copy paste _site to neocities.org

── writers-zone
   ├── about.md
   ├── _config.yml
   ├── Gemfile
   ├── Gemfile.lock
   ├── index.html
   ├── _posts
   │   ├── 2016-05-20-my-example-post.md
   │   ├── 2016-05-20-super-long-article.md
   │   ├── 2016-05-20-this-post-demonstrates-post-content-styles.md
   │   ├── 2016-09-21-welcome-to-jekyll.markdown
   │   └── 2016-09-30-jekyll-gist-demo.md
   ├── search.json
   ├── search.md
   └── _site
       ├── about
       │   └── index.html
       ├── assets
       │   └── main.css
       ├── blog
       │   ├── page2
       │   │   └── index.html
       │   └── posts
       │       ├── jekyll-gist-demo.html
       │       ├── my-example-post.html
       │       ├── super-long-article.html
       │       ├── this-post-demonstrates-post-content-styles.html
       │       └── welcome-to-jekyll.html
       ├── feed.xml
       ├── feed.xslt.xml
       ├── index.html
       ├── search
       │   └── index.html
       ├── search.json
       └── sitemap.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment