-
Log in to GitHub. You must be logged in for the remaining steps to work.
-
On this page (https://github.com/uic-library/workshop-template), click on the green "Use this template" button (top right). Please do not fork this repository directly on GitHub.
-
Choose UIC Libray as the owner for the repository UNLESS you are just practicing or practicing with the repository (Only Admins can delete repository's in the UIC Library's organization)
-
Please do your work in the repository's
gh-pages
branch, since that is what is automatically published as a website by GitHub. -
Please make the repository public internally to UIC Library, leave "Include all branches" unchecked, and click on "Create repository from template". You will be redirected to your new copy of the workshop template respository.
-
Read through the customization page to learn how to step up your workshop site
Before you begin developing your new lesson, here are a few things you need to do:
- Decide on a title for your new lesson!
Once you've chosen a new title, you can set the value for
lesson_title
in_config.yml
*Note: you do not need to edit anything else in this file for the time being. - Add the URL to your built lesson pages to the repository description*
- [Add relevant topic tags to your lesson repository][cdh-topic-tags].
- make copies to match the number of parts your workshop will have by creating
copies of
\_episodes/01-introduction.md
. Files should be named according to convention:0X-short-title.md
. - add content to "episode" pages, and style with markdown (see Carpentries Lesson Example for styling this template
- add images for your workshop content to the
fig
folder. Good convention is naming each image according to the episode file it's located in0X-short-description.png
*Note: you can use png and jpeg files, but they are case sensitive, so if your file is .PNG make sure to use .PNG in the markdown image link. - add other workshop files to the
files
folder (i.e. data files, script files) *large data files will need to be zipped or linked to outside source, file size limit is 25 MB. - Fill in any remaining fields marked
FIXME
in:- index.md
- 00-setup.md
- reference.md
- add the workshop recording by navigating to where it's located in Box, copy the ID from the video sharelink (see image below) and paste into the BoxId field in the yaml in index.md
- Alternatively, if there is no recording ready to post, comment out the recording section with
{% comment %}
and{% endcomment %}
until there is a recording to add.
- Alternatively, if there is no recording ready to post, comment out the recording section with
*Your new website will be rendered at https://uic-library.github.io/<workshop-repo-name>
. *To set the URL on GitHub, click the gear wheel button next to About on the right of the repository landing page. You will have to manually enter the url even though a repository at https://github.com/uic-library/workshop-repo-name/ will render automatically at the URL https://uic-library.github.io/.
- Update this README with relevant information about your workshop (see example below) and delete this section
- delete the images in fig related to the README
- Update the
_extras/further-resources.md
There are two ways of customizing your website. You can either:
- edit the files directly in GitHub using your web browser
- clone the repository on your computer and update the files locally
-
Go into your newly-created repository, ensure you are on the gh-pages branch by clicking on the branch under the drop down in the menu bar (see the note below):
-
Use the pencil icon to go into editing mode and make your edits:
*Note working on your workshop online is prone to losing edits due to internet outages. Either save very frequently, or edit locally.
If you are already familiar with Git, you can clone the repository to your desktop, edit your workshop locally, and push your changes back to the repository.
git clone https://github.com/uic-library/workshop-repo-name/
In order to view your changes once you are done editing, if you have bundler installed (see the installation instructions, you can preview your site locally with:
make serve
for Macs or
bundle exec jekyll serve
for Windows
and go to http://localhost:4000 to preview your site.
If there are any issues with the edits you made, you will get an error message from jekyll. See common jekyll error messages here to help with troubleshooting.
Once you are satisfied with the edits to your site, commit and push the changes to your repository. A few minutes later, you can go to the GitHub Pages URL for your workshop site and view it.
Alternatively, you can download and install the GitHub Desktop application, though you won't be able to preview edits as you would with the command line.
* Highly recommend becoming comfortable using Git in command line at least for adding, commiting, previewing, and pushing changes. It can take a long time for a push to load on GitHub oneline and to be able to see the change to the website.
FIXME (other info that should go in the readme?)
FIXME
Still in development? Any major fixes to do?
FIXME (original creator) FIXME FIXME
This workshop was created using the template at https://github.com/uic-library/workshop-template