This is the main website for the Lex Ladies Coding Club in Lexington, KY. To view the site go to http://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
cmdin Start Menu search field). cd \Users\your_user_name\Downloads\DevKit-- replaceyour_user_namewith whatever your Windows user name is.ruby dk.rb initruby dk.rb installgem 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
cmdin Start Menu search field). - Navigate to where this repository is checked out using the
cdcommand in the terminal/prompt. For example, in Windows:cd \Users\your_user_name\Documents\GitHub\LexLadiesCode.github.io bundleto install necessary gems, including Jekyll.jekyll serve -w(If you are using rbenv for ruby version control, dorbenv exec jekyll serve -w.)- Visit
http://localhost:4000in your browser to view the site.
This site uses Jekyll to create static HTML pages. Read more about Jekyll at http://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: https://pages.github.com/
The site uses Twitter Bootstrap for style. Try it out for yourself! http://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: https://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. http://docs.shopify.com/themes/liquid-basics