Create web tutorials with Reveal.js and Git

Workshop slides can be viewed consistently on any browser, device, and platform with this easy workflow.
160 readers like this.
Person reading a book and digital copy

Whether you're a learner or a teacher, you probably recognize the value of online workshops set up like slideshows for communicating knowledge. If you've ever stumbled upon one of these well-organized tutorials that are set up page by page, chapter by chapter, you may have wondered how hard it was to create such a website.

Well, I'm here to show you how easy it is to generate this type of workshop using a fully automated process.

Introduction

When I started putting my learning content online, it was not a nice, seamless experience. So, I wanted something repeatable and consistent that was also easy to maintain, since my content changes as the technology I teach progresses.

I tried many delivery models, from low-level code generators, such as Asciidoctor, to laying out a workshop in a single PDF file. All failed to satisfy me. When I deliver live, onsite workshops, I like using slideshows, so I wondered if I could do the same thing for my online, self-paced workshop experiences.

After some digging, I built a foundation for creating painless workshop websites. It helped that I was already using a presentation-generation framework that resulted in a website-friendly format (HTML).

Setting it up

Here the basic components you need for this project:

  • Workshop idea (this is your problem, can't help you here)
  • Reveal.js for the workshop slides
  • GitLab project repository
  • Your favorite HTML code editor
  • Web browser
  • Git installed on your machine

If this list looks intimidating, there's a quick way to get started that doesn't involve pulling all the pieces together one by one: You can use my template project to give you a kickstart with the slides and project setup.

This article assumes you're familiar with Git and projects hosted on a Git platform like GitLab. If you need a refresher or tutorial, check out our introductory Git series.

Start by cloning the template project to your local machine:

$ git clone https://gitlab.com/eschabell/beginners-guide-automated-workshops.git

Set up a new GitLab project for this and import the template project as the initial import.

There are a number of important files for the workshop website. In the root directory, you'll find a file called .gitlab-ci.yml, which is used as a trigger when you commit changes to the master branch (i.e., merge pull requests to master). It triggers a copy of the complete contents of the slides directory into the GitLab project's website folder.

I have this hosted as a project called beginners-guide-automated-workshops in my GitLab account. When it deploys, you can view the contents of the slides directory in your browser by navigating to:

https://eschabell.gitlab.io/beginners-guide-automated-workshops

For your user account and project, the URL would look like:

https://[YOUR_USERNAME].gitlab.io/[YOUR_PROJECT_NAME]

These are the basic materials you need to start creating your website content. When you push changes, they will automatically generate your updated workshop website. Note that the default template contains several example slides, which will be your first workshop website after you complete the full check-in to your repository.

The workshop template results in a reveal.js slideshow that can run in any browser, with automatic resizing that allows it to be viewed by almost anyone, anywhere, on any device.

How's that for creating handy and accessible workshops?

How it works

With this background in place, you're ready to explore the workshop materials and start putting your content together. Everything you need can be found in the project's slides directory; this is where all of the magic happens with reveal.js to create the workshop slideshow in a browser.

The files and directories you'll be working with to craft your workshop are:

  • The default.css file
  • The images directory
  • The index.html file

Open each one in your favorite HTML/CSS editor and make the changes described below. It does not matter which editor you use; I prefer RubyMine IDE because it offers a page preview in the local browser. This helps when I'm testing out content before pushing it online to the workshop website.

Default.css file

The file css/theme/default.css is the base file where you will set important global settings for your workshop slides. The two main items of interest are the default font and background image for all slides.

In default.css, look at the section labeled GLOBAL STYLES. The current default font is listed in the line:

font-family: "Red Hat Display", "Overpass", san-serif;

If you're using a non-standard font type, you must import it (as was done for the Overpass font type) in the line:

@import url('SOME_URL');

The background is the default image for every slide you create. It is stored in the images directory (see below) and set in the line below (focus on the image path):

background: url("…/…/images/backgrounds/basic.png")

To set a default background, just point this line to the image you want to use.

Images directory

As its name implies, the images directory is used for storing the images you want to use on your workshop slides. For example, I usually put screenshots that demonstrate the progress of the workshop topic on my individual slides.

For now, just know that you need to store the background images in a subdirectory (backgrounds) and the images you plan to use in your slides in the Images directory.

Index.html file

Now that you have those two files sorted out, you'll spend the rest of your time creating slides in the HTML files, starting with index.html. For your workshop website to start taking shape, pay attention to the following three sections in this file:

  • The head section, where you set the title, author, and description
  • The body section, where you find the individual slides to design
  • Each section, where you define the contents of individual slides

Start with the head section, since it's at the top. The template project has three placeholder lines for you to update:

<title>INSERT-YOUR-TITLE-HERE</title>
<meta name="description" content="YOUR DESCIPTION HERE.">
<meta name="author" content="YOUR NAME">

The title tag contains the text that appears in the browser tab when the file is open. Change it to something relevant to the title of your workshop (or maybe a section of your workshop), but remember to keep it short since tab title space is limited. The description meta tag contains a short description of your workshop, and the author meta tag is where you should put your name (or the workshop creator's name, if you're doing this for someone else).

Now move on to the body section. You'll notice that it's divided into a number of section tags. The opening of the body contains a comment that explains that you're creating slides for each open and closing tag labeled section:

<body>
	<div class="reveal">

	<!-- Any section element inside of this container is displayed as a slide -->
	<div class="slides">

Next, create your individual slides, with each slide enclosed in section tags. The template includes a few slides to help you get started. For example, here's the first slide:

<section>
      <div style="width: 1056px; height: 300px">
            <h1>Beginners guide</h1>
            <h2>to automated workshops</h2>
      </div>
      <div style="width: 1056px; height: 200px; text-align: left">
            Brought to you by,<br/>
            YOUR-NAME<br/>
      </div>
      <aside class="notes">Here are notes: Welcome to the workshop!</aside>
</section>

This slide has two areas divided with div tags. Spacing separates the title and the author.

Assuming you have some knowledge of using HTML, try various things to develop your workshop. It's really handy to use a browser as you go to preview the results. Some IDEs provide local viewing of changes, but you can also open the index.html file and view your changes before pushing them to the repository.

Once you're satisfied with your workshop, push your changes, and wait for them to pass through the continuous integration pipeline. They'll be hosted like the template project at https://eschabell.gitlab.io/beginners-guide-automated-workshops.

Learn more

To learn more about what you can do with this workflow, check out the following example workshops and sites that host workshop collections. All of these are based on the workflow described in this article.

Workshop examples:

Workshop collections:

I hope this beginner's guide and the template workshop project show you easy and painless it can be to develop and maintain workshop websites in a consistent manner. I also hope this workflow gives your workshop audiences full access to your content on almost any device so they can learn from the knowledge you're sharing.

What to read next
User profile image.
Eric is Red Hat’s Portfolio Architect Technical Director. He's renowned in the development community as a speaker, lecturer, author, and baseball expert. In his current role allows him to share his knowledge of Red Hat’s open source technologies and cloud computing.

3 Comments

Thanks, Eric.
Everyone has their own preferred learning style, slide tutorials work for me while I really do not like it when I have to use video tutorials.

You're very welcome Peter.

Thanks for taking the time to share your thoughts. I've gotten to the point with video tutorials that I need to keep them short and sweet, think of the time needed to explain a single slide in the workshop so I can embed if needed.

Thanks, Eric.

Very simple to use :)

I do created a web slides from your example with a half hour.
is it possible align the content body to the Top of vertical. My slides body looks place on lower page.

james

Creative Commons LicenseThis work is licensed under a Creative Commons Attribution-Share Alike 4.0 International License.