This is the main website for the LexLadiesCode club in Lexington, Kentucky. To view the site go to lexladiescode.org or lexladiescode.github.io.
- Install Ruby. Use RubyInstaller for Windows.
- On Windows, also install the RubyInstaller DevKit. Extract it to a folder called DevKit in your Downloads folder.
- Open the Command Prompt (type
cmd
in Start Menu search field). cd \Users\your_user_name\Downloads\DevKit
-- replaceyour_user_name
with whatever your Windows user name is.ruby dk.rb init
ruby dk.rb install
gem install bundler
- Open the Command Prompt (type
- In OS X, open the Terminal app (found under Applications > Utilties). In Windows, open the Command Prompt (type
cmd
in Start Menu search field). - Navigate to where this repository is checked out using the
cd
command in the terminal/prompt. For example, in Windows:cd \Users\your_user_name\Documents\GitHub\LexLadiesCode.github.io
bundle
to install necessary gems, including Jekyll.bundle exec jekyll serve -w
(If you are using rbenv for ruby version control, dorbenv exec jekyll serve -w
.)- Visit
http://localhost:4000
in your browser to view the site. As you change files, Jekyll will rebuild the site so you can just reload your browser to see your changes.
This site uses Jekyll to create static HTML pages. Read more about Jekyll at jekyllrb.com.
The site is hosted on GitHub via the awesome GitHub Pages feature. You push your changes and GitHub rebuilds the pages using Jekyll. Read more about how it works here: pages.github.com.
The site uses Twitter Bootstrap for style. Try it out for yourself! getbootstrap.com.
Pages in a Jekyll site can be created using basic HTML, Markdown, or Textile. We'll use Markdown heavily. Markdown is a way to turn simple text into HTML. Everything you'd want to know is here: daringfireball.net/projects/markdown.
We'll insert some programming logic into our website using Liquid. More about that soon! Check out index.html for a look. docs.shopify.com/themes/liquid-basics.