Slide Title

Subtitle

CampusHash

Special Slide

Subtitle

Elements

This is an unordered list:

  • Bullet1
  • Bullet2
  • Bullet3

This is bold. This is italic.

No Background

CampusHash

source: place source info here

Big Title Slide

This is a title with the event branding.

Code Example

Media Queries are sweet:

@media screen and (max-width: 640px) {
  #sidebar { display: none; }
}

Once more, with JavaScript

function isSmall() {
  return window.matchMedia("(min-device-width: ???)").matches;
}

function hasTouch() {
  return Modernizr.touch;
}

function detectFormFactor() {
  var device = DESKTOP;
  if (hasTouch()) {
    device = isSmall() ? PHONE : TABLET;
  }
  return device;
}

Centered content

This content should be centered!

That's all, folks!

You have been a great audience!

Shoot your questions at forum.campushash.com.