Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

An introduction to the Drupal Content Management Framework.

License

Notifications You must be signed in to change notification settings

mparker17/talk--drupal-intro

Repository files navigation

Introduction to Drupal

An introduction to the Drupal Content Management Framework.

Use

  1. Open https://mparker17.github.io/talk--drupal-intro/ in a vaguely modern web browser.
  2. Choose either "Slides" or "Speaker notes"

Note this loads reveal.js on CloudFlare's cdnjs, so you have to be connected to the internet when you load the slideshow for the first time. Technical information is available on cdnjs's page about reveal.js.

Develop

  1. Install a Ruby version mananger.

    (I installed rbenv with my computer's package manager).

  2. Clone this repo, use your Ruby version manager to install the correct version of Ruby & Rubygems, use Rubygems to install the Bundler package manager, and use Bundler to install dependencies needed to compile this presentation:

     $ git clone --recursive https://github.com/mparker17/talk--drupal-intro.git
     $ cd talk--drupal-intro/
     $ rbenv install
     $ gem install bundler
     $ bundle install
    
  3. Run Jekyll's local development server:

     $ bundle exec jekyll serve