This repository has been archived by the owner on Aug 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6019ba8
Showing
12 changed files
with
437 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# << ENTER WORKSHOP NAME HERE >> | ||
Materials for the DMDS workshop: **<< ENTER WORKSHOP NAME HERE >> ** | ||
|
||
This repository contains workshop files, as well as files used to create the [workshop webpage](https://scds.githib.io/<<enter_site_url>>) with GitHub Pages | ||
|
||
|
||
Contributions by the following individuals: | ||
- Workshop content created by << ENTER NAME(S) HERE >> | ||
- Content edited for online use by << ENTER NAME(S) HERE >> | ||
- Online pages created by << ENTER NAME(S) HERE >> | ||
|
||
|
||
|
||
All content is made available under a GNU General Public License v3.0. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
title: DMDS Workshop Name # *** Enter workshop title here | ||
subtitle: 'SCDS Do More with Digital Scholarship series' | ||
|
||
remote_theme: scds/just-the-docs | ||
github_repo_url: "https://scds.github.io/dmds-template/" # ***Enter workshop URL (in github pages) here | ||
color_scheme: mcmaster | ||
# logo: "https://github.com/scds/intro-voyant/blob/main/assets/img/dmds-tableau.png?raw=true" | ||
|
||
# Heading anchor links appear on hover over h1-h6 tags in page content | ||
# allowing users to deep link to a particular heading on a page. | ||
# | ||
# Supports true (default) or false | ||
heading_anchors: true | ||
|
||
|
||
# Footer content | ||
# appears at the bottom of every page's main content | ||
|
||
# Back to top link | ||
back_to_top: true | ||
back_to_top_text: "Back to top" | ||
|
||
# Footer last edited timestamp | ||
last_edit_timestamp: true # show or hide edit time - page must have `last_modified_date` defined in the frontmatter | ||
last_edit_time_format: "%b %e %Y at %I:%M %p" # uses ruby's time format: https://ruby-doc.org/stdlib-2.7.0/libdoc/time/rdoc/Time.html | ||
|
||
# Footer "Edit this page on GitHub" link text | ||
gh_edit_link: true # show or hide edit this page link | ||
gh_edit_link_text: "View this content on GitHub" | ||
gh_edit_repository: "https://github.com/scds/dmds-template" #*** ENTER the github URL for your repo | ||
gh_edit_branch: "main" # the branch that your docs is served from | ||
# gh_edit_source: docs # the source that your files originate from | ||
gh_edit_view_mode: "tree" # "tree" or "edit" if you want the user to jump into the editor immediately | ||
|
||
|
||
plugins: | ||
- jekyll-remote-theme | ||
- jekyll-seo-tag | ||
|
||
# Google Analytics Tracking | ||
ga_tracking: # *** This needs to be set up in Google Analytics once you know the website URL (ask Jay to do this). Then the tracking code needs to be taken from Google Analytics and pasted here. | ||
ga_tracking_anonymize_ip: true # Use GDPR compliant Google Analytics settings (true by default) | ||
license_url: "http://creativecommons.org/licenses/by/4.0/" | ||
license_name: "Creative Commons Attribution 4.0 International License" | ||
license_image_url: "https://i.creativecommons.org/l/by/4.0/88x31.png" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
Follow these steps to create a new workshop website from this template repository: | ||
|
||
## 1. Create a new repository using this template | ||
1. Navigate to the [SCDS DMDS template repository](https://github.com/scds/dmds-template) | ||
2. Above the file list, click **Use this template** | ||
3. Select scds as the repository owner | ||
4. Give the new repository a name (we try to keep it to a few words and use hyphens to delimit words--e.g. *intro-voyant*) | ||
5. Set the repository visibility to **Public** | ||
6. Click **Create repository from template** | ||
- Full instructions (from GitHub) [here](https://docs.github.com/en/free-pro-team@latest/github/creating-cloning-and-archiving-repositories/creating-a-repository-from-a-template#creating-a-repository-from-a-template). | ||
|
||
## 2. Configure GitHub Pages | ||
1. In the new repository, go to **Settings > GitHub Pages** | ||
2. As **Source**, select **main** branch | ||
3. Do not choose a theme (a theme has already been configured) | ||
4. Click save. The URL to your new website will be displayed. It will take the form ```https://scds.githib.io/<repository_name>```, where ```repository_name``` is the name you created in step 4 of the previous section. | ||
|
||
## 3. Set up Google Analytics | ||
1. Go to the [admin page](https://analytics.google.com/analytics/web/#/a2574088p251711101/admin) for the SCDS workshop pages | ||
2. Click **Add Stream > Web** | ||
3. Enter the GitHub Pages URL created in previous section (i.e. ```https://scds.githib.io/<repository_name>```). Provide a name. | ||
|
||
## 4. Edit the README file | ||
1. Enter the workshop name, workshop URL, and contributor name(s) where prompted | ||
|
||
## 5. Add necessary documents, images, and data | ||
```assets/docs``` | ||
- Add any PDFs (slides, worksheets, etc.) that you will either embed or link to in the main text | ||
|
||
```assets/img``` | ||
- Add any workshop-specific image(s), including the title image and any images to be shown in the main content | ||
- Keep the logo files, as they may be useful. | ||
|
||
```data/``` | ||
- Add any datasets or other files that are required for the workshop. | ||
|
||
## 6. Edit the config.yml file | ||
1. Update lines with inline comments beginning with ```***```. These include the following variables: | ||
- **title** (workshop title) | ||
- **github_repo_url** (GitHub Pages URL from Section 2) | ||
- **gh_edit_repository** (GitHub repository URL from Section 1) | ||
- **ga_tracking** (Tracking code from Section 3) | ||
Colour schemes are dictated by the ```colour scheme``` variable. These schemes are managed [here](https://github.com/scds/just-the-docs/tree/master/_sass/color_schemes) | ||
|
||
## 7. Add content to workshop pages | ||
Content is currently block-commented out with ```<!--``` and ```-->``` at the start and end, respectively. Edit content and replace links as needed. | ||
|
||
```index.md``` | ||
- Edit the link to the title image | ||
- Edit the other content | ||
|
||
```preparation.md``` | ||
- Edit content and URLs to content (like data) | ||
|
||
```instructions.md``` | ||
- Add any specific instructions | ||
- Update URLs to embedded videos, download links, workshop slides, etc. | ||
- If you want to have pages for multiple lessons, you can replace ```instructions.md``` with multiple pages (e.g. ```lesson-1.md``` and ```lesson-2.md```, etc.). Each new page will need a unique title and the **nav_order** variable for these pages (and ```learn-more.md```, as well). | ||
|
||
```learn-more.md``` | ||
- Add content | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<p style="font-size:0.75em">Brought to you by the <a href="https://scds.ca">Lewis & Ruth Sherman Centre for Digital Scholarship</a>.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,215 @@ | ||
--- | ||
layout: table_wrappers | ||
--- | ||
|
||
<!DOCTYPE html> | ||
|
||
<html lang="{{ site.lang | default: 'en-US' }}"> | ||
{% include head.html %} | ||
<body> | ||
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;"> | ||
<symbol id="svg-link" viewBox="0 0 24 24"> | ||
<title>Link</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link"> | ||
<path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-search" viewBox="0 0 24 24"> | ||
<title>Search</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"> | ||
<circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-menu" viewBox="0 0 24 24"> | ||
<title>Menu</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"> | ||
<line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-arrow-right" viewBox="0 0 24 24"> | ||
<title>Expand</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"> | ||
<polyline points="9 18 15 12 9 6"></polyline> | ||
</svg> | ||
</symbol> | ||
<symbol id="svg-doc" viewBox="0 0 24 24"> | ||
<title>Document</title> | ||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file"> | ||
<path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline> | ||
</svg> | ||
</symbol> | ||
</svg> | ||
|
||
<div class="side-bar"> | ||
<div class="site-header"> | ||
<a href="{{ '/' | absolute_url }}" class="site-title lh-tight">{% include title.html %}</a> | ||
<a href="#" id="menu-button" class="site-button"> | ||
<svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-menu"></use></svg> | ||
</a> | ||
</div> | ||
<nav role="navigation" aria-label="Main" id="site-nav" class="site-nav"> | ||
{% if site.just_the_docs.collections %} | ||
{% assign collections_size = site.just_the_docs.collections | size %} | ||
{% for collection_entry in site.just_the_docs.collections %} | ||
{% assign collection_key = collection_entry[0] %} | ||
{% assign collection_value = collection_entry[1] %} | ||
{% assign collection = site[collection_key] %} | ||
{% if collection_value.nav_exclude != true %} | ||
{% if collections_size > 1 %} | ||
<div class="nav-category">{{ collection_value.name }}</div> | ||
{% endif %} | ||
{% include nav.html pages=collection %} | ||
{% endif %} | ||
{% endfor %} | ||
{% else %} | ||
{% include nav.html pages=site.html_pages %} | ||
{% endif %} | ||
</nav> | ||
<footer class="site-footer"> | ||
<!--This site uses <a href="https://github.com/pmarsceill/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.--> | ||
<div class="text-small text-grey-dk-000 mb-4"> | ||
{% if site.license_image_url != nil %} | ||
<img alt="{{ site.license_name }}" style="border-width:0" src="{{ site.license_image_url }}" /><br /> | ||
{% endif %} | ||
{% if site.license_name != nil %} | ||
<p>This work is licensed under a | ||
{% if site.license_url != nil %} | ||
<a rel="license" target="_blank" href="{{ site.license_url }}"> | ||
{% endif %} | ||
{{ site.license_name }}{% if site.license_url != nil %}</a>{% endif %}.</p> | ||
{% endif %} | ||
<img width="170px" style="padding-bottom:15px;" align="middle" src="{{site.baseurl}}/assets/img/logo.png" > | ||
</div> | ||
</footer> | ||
</div> | ||
<div class="main" id="top"> | ||
<div id="main-header" class="main-header"> | ||
{% if site.search_enabled != false %} | ||
<div class="search"> | ||
<div class="search-input-wrap"> | ||
<input type="text" id="search-input" class="search-input" tabindex="0" placeholder="Search {{ site.title }}" aria-label="Search {{ site.title }}" autocomplete="off"> | ||
<label for="search-input" class="search-label"><svg viewBox="0 0 24 24" class="search-icon"><use xlink:href="#svg-search"></use></svg></label> | ||
</div> | ||
<div id="search-results" class="search-results"></div> | ||
</div> | ||
{% endif %} | ||
{% include header_custom.html %} | ||
{% if site.aux_links %} | ||
<nav aria-label="Auxiliary" class="aux-nav"> | ||
<ul class="aux-nav-list"> | ||
{% for link in site.aux_links %} | ||
<li class="aux-nav-list-item"> | ||
<a href="{{ link.last }}" class="site-button" | ||
{% if site.aux_links_new_tab %} | ||
target="_blank" rel="noopener noreferrer" | ||
{% endif %} | ||
> | ||
{{ link.first }} | ||
</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</nav> | ||
{% endif %} | ||
</div> | ||
<div id="main-content-wrap" class="main-content-wrap"> | ||
{% unless page.url == "/" %} | ||
{% if page.parent %} | ||
{%- for node in pages_list -%} | ||
{%- if node.parent == nil -%} | ||
{%- if page.parent == node.title or page.grand_parent == node.title -%} | ||
{%- assign first_level_url = node.url | absolute_url -%} | ||
{%- endif -%} | ||
{%- if node.has_children -%} | ||
{%- assign children_list = pages_list | where: "parent", node.title -%} | ||
{%- for child in children_list -%} | ||
{%- if page.url == child.url or page.parent == child.title -%} | ||
{%- assign second_level_url = child.url | absolute_url -%} | ||
{%- endif -%} | ||
{%- endfor -%} | ||
{%- endif -%} | ||
{%- endif -%} | ||
{%- endfor -%} | ||
<nav aria-label="Breadcrumb" class="breadcrumb-nav"> | ||
<ol class="breadcrumb-nav-list"> | ||
{% if page.grand_parent %} | ||
<li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li> | ||
<li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li> | ||
{% else %} | ||
<li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li> | ||
{% endif %} | ||
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li> | ||
</ol> | ||
</nav> | ||
{% endif %} | ||
{% endunless %} | ||
<div id="main-content" class="main-content" role="main"> | ||
{% if site.heading_anchors != false %} | ||
{% include vendor/anchor_headings.html html=content beforeHeading="true" anchorBody="<svg viewBox=\"0 0 16 16\" aria-hidden=\"true\"><use xlink:href=\"#svg-link\"></use></svg>" anchorClass="anchor-heading" anchorAttrs="aria-labelledby=\"%html_id%\"" %} | ||
{% else %} | ||
{{ content }} | ||
{% endif %} | ||
|
||
{% if page.has_children == true and page.has_toc != false %} | ||
<hr> | ||
<h2 class="text-delta">Table of contents</h2> | ||
<ul> | ||
{%- assign children_list = pages_list | where: "parent", page.title | where: "grand_parent", page.parent -%} | ||
{% for child in children_list %} | ||
<li> | ||
<a href="{{ child.url | absolute_url }}">{{ child.title }}</a>{% if child.summary %} - {{ child.summary }}{% endif %} | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
{% endif %} | ||
|
||
{% capture footer_custom %} | ||
{%- include footer_custom.html -%} | ||
{% endcapture %} | ||
{% if footer_custom != "" or site.last_edit_timestamp or site.gh_edit_link %} | ||
<hr> | ||
<footer> | ||
{% if site.back_to_top %} | ||
<p><a href="#top" id="back-to-top">{{ site.back_to_top_text }}</a></p> | ||
{% endif %} | ||
|
||
{{ footer_custom }} | ||
|
||
{% if site.last_edit_timestamp or site.gh_edit_link %} | ||
<div class="d-flex mt-2"> | ||
{% if site.last_edit_timestamp and site.last_edit_time_format and page.last_modified_date %} | ||
<p class="text-small text-grey-dk-000 mb-0 mr-2"> | ||
Page last modified: <span class="d-inline-block">{{ page.last_modified_date | date: site.last_edit_time_format }}</span>. | ||
</p> | ||
{% endif %} | ||
{% if | ||
site.gh_edit_link and | ||
site.gh_edit_link_text and | ||
site.gh_edit_repository and | ||
site.gh_edit_branch and | ||
site.gh_edit_view_mode | ||
%} | ||
<p class="text-small text-grey-dk-000 mb-0"> | ||
<a href="{{ site.gh_edit_repository }}/{{ site.gh_edit_view_mode }}/{{ site.gh_edit_branch }}{% if site.gh_edit_source %}/{{ site.gh_edit_source }}{% endif %}/{{ page.path }}" id="edit-this-page">{{ site.gh_edit_link_text }}</a> | ||
</p> | ||
{% endif %} | ||
</div> | ||
{% endif %} | ||
</footer> | ||
{% endif %} | ||
|
||
</div> | ||
</div> | ||
|
||
{% if site.search_enabled != false %} | ||
{% if site.search.button %} | ||
<a href="#" id="search-button" class="search-button"> | ||
<svg viewBox="0 0 24 24" class="icon"><use xlink:href="#svg-search"></use></svg> | ||
</a> | ||
{% endif %} | ||
|
||
<div class="search-overlay"></div> | ||
{% endif %} | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
layout: home | ||
title: Home | ||
description: SCDS Do More with Digital Scholarship workshop series | ||
nav_order: 1 | ||
--- | ||
|
||
<!-- Edit the content below for the workshop in question. Once you're ready to publish, remove the comment characters e.g. "<!--" at the start and end --> | ||
|
||
<!-- | ||
<img src="assets/img/dmds-tableau.png" alt="Workshop Title Slide" width="720"> | ||
# Welcome to Data Visualization with Tableau. | ||
You might not think of numbers and locations as Humanities data, but it all depends on how you use them! Working with numeric and spatial data, you will learn how to create visualizations in [Tableau](https://www.tableau.com/). | ||
Proceed to the [Preparation](preparation) page to get started. | ||
--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
layout: default | ||
title: Getting Started | ||
nav_order: 3 | ||
--- | ||
|
||
<!-- Edit the content below for the workshop in question. Once you're ready to publish, remove the comment characters e.g. "<!--" at the start and end --> | ||
|
||
<!-- | ||
After ensuring that you've followed the [Preparatory steps](preparation), open Tableau and follow along with the workshop recording or slides. | ||
## Workshop recording | ||
<iframe height="480" width="853" allowfullscreen frameborder=0 src="https://echo360.ca/media/4378b2ec-7d0c-4632-a1e4-5a8076a494da/public?autoplay=false&automute=false"></iframe> | ||
View the original [here](https://echo360.ca/media/4378b2ec-7d0c-4632-a1e4-5a8076a494da/public). | ||
## Workshop slides | ||
<div style="position:relative;padding-top:66.25%;"> | ||
<iframe src="//docs.google.com/viewer?url=https://github.com/scds/intro-tableau/raw/main/assets/docs/tableau_20201118.pdf?dl=0&hl=en_US&embedded=true" class="gde-frame" style="position:absolute;top:0;left:0;width:100%;height:100%;border:none;" scrolling="no"></iframe> | ||
</div> | ||
[Download as a PDF](https://github.com/scds/intro-tableau/raw/main/assets/docs/tableau_20201118.pdf) | ||
<br> | ||
## Worksheets | ||
**Coming soon!** | ||
--> |
Oops, something went wrong.