#!/usr/bin/env sh

set -e

example_name="$@"

# Create a directory for the example name.
mkdir -p examples/"$example_name"

# Copy the template to the new example file.
cp examples/coding-template/template3.html \
  examples/"$example_name"/"$example_name".html
