{% capture aboutworkshop %}
Place the topic of your workshop here, for example: LimeSurvey, Digital Dexterity, Copyright for researchers, etc.
Once you have completed this workshop you should be able to:
- Explain the difference between copyright and academic integrity
- Identify the most common sources of GLAM archival text
- Verb a noun with the following limiting words
This workshop is aimed at researchers and academics in the field of biostatistics.
To successfully coplete this workshop you will need:
- A modern browser
- An installation of OpenRefine
It is assumed that you have the following level of understanding:
- Ability to install software on your own device
- Foundational data terminology such as tabular data, binary data, csv, tables, fields etc.
{% endcapture %}
{% include card.html header="About this workshop" text=aboutworkshop %}
This template is derived from workshop-template-b
by Evan Williamson. It is a Jekyll template for a simple workshop website, with a Bootstrap-based theme, designed for hosting on GitHub Pages.
Works best for about 5 pages of instructions, plus an index page, all written in Markdown. The navigation to the main pages is exposed at top and bottom of each page for easy stepping through the sections.
Please note: the template was updated in Nov 2021 to Bootstrap 5!
For a more minimal version, try the original workshop-template
Rather than making slides for a workshop, why not make a website? It's easier to write, access, share, and reuse. GitHub and GitHub Pages makes this pretty easy.
It is a better Open Educational Resource since anyone can make a copy and adapt!
The workshop-template-b repository is a template project --> to get started quickly, make a copy and replace the demo with your own content and customizations. The demo site demonstrates the output on GitHub Pages. The content pages serve as documentation and examples to copy from.
Overview:
- Click the green "Use this template" button on the Library Workshop Template to make your own new copy of the code (make sure you are logged into GitHub!).
- Work on the GitHub web interface or clone to your local machine to edit files (tip: click
.
on any GitHub repository to open the web editor). - Edit the
_config.yml
with your info. - Edit/add the content pages in Markdown (found in the "content" folder).
- Add any images to the "images" folder.
- Push to GitHub or commit on the web interface.
- In your repository's settings, activate GitHub Pages, using main branch.
Edit the "_config.yml" to get your workshop website set up with the basics such as title
and author
.
Check comments (denoted by #
in YAML) in the file for all the options!
Once you have edited the "_config.yml", you are ready to start editing your content pages. All your content is written in Markdown in the "content" folder.
Content pages are written in markdown and can be enhanced using Liquid includes that are packaged with the template (see "_includes/" folder). Start by editing the examples or creating new files in the "content" folder.
At the top of each page is "YAML front matter" used to configure the page. Use these options:
nav:
add the text you want to appear in the the header and footer navigation.- Alternatively, use
nav: true
to use the page'stitle
value for the nav text. - Do not include
nav
if you do not want the page to appear in the nav elements. - All pages with a
nav
value will appear in the header and footer navigation, sorted by order of filenames. For simplicity use leading numbers in the lesson page filenames to create correct order.
- Alternatively, use
title:
value will appear ash1
at the top of the page.topics:
will appear as a small feature below the title (optional).description:
will appear as an indented text block below the title (optional). This gives you a chance to summarize the section contents.youtubeid:
will add an YouTube video embed (optional). Find the id in the YouTube link. For example, inhttps://youtu.be/moJgWrD6dwg
orhttps://www.youtube.com/watch?v=moJgWrD6dwg
the youtubeid ismoJgWrD6dwg
.- Alternatively, if you don't want
title
or other options to appear on the page, you can over ride the section layout by addinglayout: default
workshop-template-b
contains a series of Liquid "includes" to simplify adding basic Bootstrap 5 components to your Markdown content.
The includes can be found in the "_includes" folder.
Check the comments at the top of each include file for details about options and how to use them.
- put any images you want to use in the "images" folder, or use a full URL to external images.
- in a markdown file where you want the image to appear, use the "figure.html" include on its own line, following the pattern:
{% include figure.html img="my-cat.jpg" alt="cat" caption="My cat" width="50%" %}
- figures will be centered, and can optionally be given a caption and percentage width.
Additional includes are available in the "_includes" folder, check the comments for how to use them.
The file "assets/css/custom.scss" exposes variables that can customize the basic style of website:
$top-border
adds a tiny splash of color on the header and footer borders. Try tweaking the color using an HTML # value.$text-color
sets the body text color$link-color
sets link color$base-font-size
sets the body text size$container-max
sets a maximum width for the text body--keeping it narrow can make it easier to read, but gives less screen space!
To use the Bootstrap defaults for any of these values, comment out the variable in "custom.scss", using //
in front of the option's line (e.g. // $text-color: #111 !default;
).
To add your own custom CSS, use the file "_sass/_custom.scss". Any CSS/SASS you add to this file will override the template and Bootstrap classes.
Griffith's Google id has already been added to "_config.yml" in google-analytics-id:
To use an alternative analytics, paste the code snippet provided by the platform into the file "_includes/template/analytics.html".
The analytics code will only be added when using "production" environment.
This happens automatically on GitHub Pages.
To build manually you need to add "JEKYLL_ENV", like: JEKYLL_ENV=production jekyll build
.
- Demo (this repository)
- Go Go GitHub Pages (v.2)
- Make OER! (presentation)
- Web Crash Course (workshop)
- Write MD (workshop)
My workshop sites using an minimal version of this template (no bootstrap):
Repository does not include a Gemfile because it is a very simple project. Originally built using Ruby 2.5+ and Jekyll 3.7+; most recently used Ruby 3 and Jekyll 4.2.1. Designed for use with GitHub Pages automatic build versions.