Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added "vendor" (without) quotation marks to ./_config.yml file for th… #193

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,15 @@ Copyright (C) 2019 Sal, https://www.wowthemes.net
3. Create a branch off of master and give it a meaningful name (e.g. my-new-mediumish-feature).
4. Make necessary changes, commit, push and open a pull request on GitHub.

### Usage

1. [Fork the repo](https://github.com/wowthemesnet/mediumish-theme-jekyll). or do `git clone git@github.com:wowthemesnet/mediumish-theme-jekyll.git` in your directory.
2. Change directory with the command: enter `cd mediumish-theme-jekyll/` in the terminal to change directory.
3. Enter `bundle config set --local path 'vendor/bundle'` in the terminal for allowing to install and update your gems.
4. Enter `bundle install` in the terminal for installing the dependencies specified in your Gemfile.
5. Enter `bundle update` in the terminal to update your gems to the latest available versions.
6. Enter `bundle exec jekyll serve --livereload` in the terminal To view your static-website (--livereload to automatically reload the page, when you're changing the content inside your directory.)

Check the pages in your `mediumish-theme-jekyll` for help. Example: view `2018-01-11-quick-start-guide.md` in the `_posts/2018-01-11-quick-start-guide.md` directory.

Thank you!
26 changes: 13 additions & 13 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
name: "Mediumish"
title: "Mediumish"
description: "Jekyll template, Medium styled, free for bloggers."
logo: 'assets/images/logo.png'
favicon: 'assets/images/logo.png'
logo: "assets/images/logo.png"
favicon: "assets/images/logo.png"
baseurl: /mediumish-theme-jekyll
google_analytics: 'UA-46278016-1'
disqus: 'demowebsite'
mailchimp-list: 'https://wowthemes.us11.list-manage.com/subscribe/post?u=8aeb20a530e124561927d3bd8&id=8c3d2d214b'
google_analytics: "UA-46278016-1"
disqus: "demowebsite"
mailchimp-list: "https://wowthemes.us11.list-manage.com/subscribe/post?u=8aeb20a530e124561927d3bd8&id=8c3d2d214b"
include: ["_pages"]
permalink: /:title/

Expand All @@ -23,8 +23,8 @@ authors:
description: "Author of Mediumish, a Bootstrap Medium styled template available for WordPress, HTML, Ghost and Jekyll. You are currently previewing Jekyll template demo."
john:
name: John
display_name: John
avatar: 'assets/images/avatar.png'
display_name: John
avatar: "assets/images/avatar.png"
gravatar: b1cc14991db7a456fcd761680bbc8f81
email: wowthemesnet@gmail.com
web: https://www.wowthemes.net
Expand All @@ -38,19 +38,19 @@ plugins:
- jekyll-feed
- jekyll-seo-tag
- jekyll-archives

# Archives
jekyll-archives:
enabled:
- categories
layout: archive
permalinks:
category: '/category/:name/'
# Pagination
category: "/category/:name/"

# Pagination
paginate: 6
paginate_path: /page:num/

# Other
markdown: kramdown

Expand All @@ -69,4 +69,4 @@ adsense-data-ad-slot: "1363087678"
# Lazy Images ("enabled" or "disabled")
lazyimages: "disabled"

exclude: [changelog.md, LICENSE.txt, README.md, Gemfile, Gemfile.lock]
exclude: [changelog.md, LICENSE.txt, README.md, Gemfile, Gemfile.lock, vendor]