forked from twu-innovation/inno101
-
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.
added 2.8, u1 zip and replace invalid links
- Loading branch information
Showing
21 changed files
with
2,022 additions
and
583 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -1,44 +1,22 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.git": false, | ||
"**/.svn": false, | ||
"**/.hg": false, | ||
"**/CVS": false, | ||
"**/.DS_Store": false, | ||
"**/Thumbs.db": false, | ||
"**/INNO-101_split_docs": false, | ||
"INNO-101_split_docs": false, | ||
"**/.Rproj.user": true, | ||
"*.user": true, | ||
".Rproj.user": true, | ||
"**/*.user": true, | ||
"**/.github": true, | ||
".github": true, | ||
"**/.backup": true, | ||
".backup": true, | ||
"**/.quarto": true, | ||
".quarto": true, | ||
"**/.vscode": true, | ||
".vscode": true, | ||
"**/docs": false, | ||
"docs": false, | ||
"**/header-assets": true, | ||
"header-assets": true, | ||
".git": true, | ||
"**/.gitignore": true, | ||
".gitignore": true, | ||
"**/custom.lua": true, | ||
"*.lua": true, | ||
"custom.lua": true, | ||
"**/*.lua": true, | ||
"**/custom.scss": true, | ||
"*.scss": true, | ||
"custom.scss": true, | ||
"**/*.scss": true, | ||
"**/Template.pdf": true, | ||
"*.pdf": true, | ||
"Template.pdf": true, | ||
"**/*.pdf": true | ||
"**/ .html": false, | ||
"**/ .md": false | ||
}, | ||
"explorerExclude.backup": {} | ||
"explorerExclude.backup": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/ .html": true, | ||
"**/ .md": true | ||
} | ||
} |
Binary file not shown.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# version 2.6 | ||
# version 2.8 | ||
|
||
project: | ||
type: book | ||
|
Binary file not shown.
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,145 @@ | ||
# Quarto Cheatsheet {.unnumbered} | ||
|
||
Below are some examples of content that can be used in course production. | ||
|
||
## Notes {.unnumbered} | ||
|
||
There are 2 options for notes, notes with or without icons. | ||
|
||
### Note with an icon {.unnumbered} | ||
|
||
::: {.note icon="true"} | ||
|
||
A note **with** an icon | ||
|
||
::: | ||
|
||
### Note without an Icon {.unnumbered} | ||
|
||
::: {.note} | ||
|
||
A note **without** an icon | ||
|
||
::: | ||
|
||
## blockquotes {.unnumbered} | ||
|
||
> "Your brand is what people say about you when you're not in the room." | ||
> ***-- Jeff Bezos*** | ||
## Accordions {.unnumbered} | ||
|
||
::: {.accordion title="This is an Accordion."} | ||
|
||
An accordion may contain extra content such as worked examples or sample answers. Accordions should be used sparingly. | ||
|
||
::: | ||
|
||
## Images {.unnumbered} | ||
|
||
Images are handled differently depending on if they are fig-images (figures) or dec-images (decorative). | ||
|
||
### Fig-image {.unnumbered} | ||
|
||
- Should contain a caption | ||
- Should have a unique fig id (*\"#fig-u1_1\"*) | ||
- You can reference any fig-image by its unique fig id from anywhere in the course | ||
- (example: @fig-u1_1) | ||
- Should contain alt text | ||
- Should contain source metadata (at least source-text) | ||
- May use a lightbox. | ||
- Adding a lightbox makes the image expandable with a click or tap. | ||
|
||
![This is a caption for a fig-image](assets/cheatsheet/cat.jpg){#fig-u1_1 fig-alt="Cat Sitting on a Wooden Table" .lightbox source-text="Cat Sitting on a Wooden Table" source-link="https://www.pexels.com/photo/cat-sitting-on-a-wooden-table-12918996/" source-author="Jasmine Pang" source-author-link="https://www.pexels.com/@jasmine-pang-232852617/" source-copyright="2022, Jasmine Pang" source-license-text="Pexels License" source-license-link="https://www.pexels.com/license/"} | ||
|
||
### Dec-image {.unnumbered} | ||
|
||
- Should not contain a caption | ||
- Should not have a fig id | ||
- Should contain alt text | ||
- Should contain source metadata (at least source-text) | ||
- May use a lightbox. | ||
- Adding a lightbox makes the image expandable with a click or tap. Generally this is not necessary with a decorative image. | ||
|
||
|
||
![](assets/cheatsheet/croissants.jpg){fig-alt="Delicious Fresh Croissants sitting on trays" source-text="Delicious Fresh Croissants" source-link="https://www.pexels.com/photo/delicious-fresh-croissants-at-sardinian-cafe-28871875/" source-author="Efrem Efre" source-author-link="https://www.pexels.com/@efrem-efre-2786187/" source-copyright="2024, Efrem Efre" source-license-text="Pexels License" source-license-link="https://www.pexels.com/license/"} | ||
|
||
|
||
## Figure Blocks {.unnumbered} | ||
|
||
Below is a figure block containing 2 fig-images. It has a 2 column layout, so the 2 images will appear side by side. | ||
|
||
::: {#fig-block_u1_1 layout-ncol="2"} | ||
|
||
![This is a caption for the first fig-image](assets/cheatsheet/tram.jpg){#fig-u1_2 fig-alt="Red Tram" .lightbox source-text="Vintage Red Tram on Streets of Prague" source-link="https://www.pexels.com/photo/vintage-red-tram-on-streets-of-prague-28999320/" source-author="Aakash Goel" source-author-link="https://www.pexels.com/@ohaakash/" source-copyright="2022, Aakash Goel" source-license-text="Pexels License" source-license-link="https://www.pexels.com/license/"} | ||
|
||
![This is a caption for the second fig-image](assets/cheatsheet/livingroom.jpg){#fig-u1_3 fig-alt="Modern living room interior with furniture and assorted plants" .lightbox source-text="Modern living room interior" source-link="https://www.pexels.com/photo/modern-living-room-interior-with-furniture-and-assorted-plants-4740484/" source-author="Ksenia Chernaya" source-author-link="https://www.pexels.com/@kseniachernaya/" source-copyright="2020, Ksenia Chernaya" source-license-text="Pexels License" source-license-link="https://www.pexels.com/license/"} | ||
|
||
|
||
This is the caption of the figure block | ||
|
||
::: | ||
|
||
### Tables {.unnumbered} | ||
|
||
Below is a table. All tables should be contained within a figure block. Figures containg tables should not use columns. | ||
|
||
::: {#fig-table_u1_1} | ||
|
||
| Month | Savings | | ||
| -------- | ------- | | ||
| January | $250 | | ||
| February | $80 | | ||
| March | $420 | | ||
|
||
This is the caption for the figure | ||
|
||
::: | ||
|
||
|
||
## Learning Activites {.unnumbered} | ||
|
||
You can set the estimated time of an activity. If you do not set the time, the field will not display. | ||
|
||
### Activity: Title of the Activity | ||
|
||
::: {.learning-activity time="20"} | ||
|
||
This is a learning activity containing an h5p activity. It has an estimated time set to 20 minutes. | ||
|
||
<iframe src="https://create.twu.ca/h5p/wp-admin/admin-ajax.php?action=h5p_embed&id=612" width="958" height="563" frameborder="0" allowfullscreen="allowfullscreen" title="LDRS 662_Unit 1_4Rs"></iframe><script src="https://create.twu.ca/h5p/wp-content/plugins/h5p/h5p-php-library/js/h5p-resizer.js" charset="UTF-8"></script> | ||
|
||
::: {.note} | ||
|
||
This is a note within an activity. | ||
|
||
::: | ||
|
||
|
||
|
||
#### Questions to Consider {.unnumbered} | ||
|
||
1. Is this a question? | ||
2. Is this a second question? | ||
|
||
::: | ||
|
||
::: {.prote} | ||
|
||
This is a prote. Protes (production notes) are only visible in *.qm*d or *.docx* files. | ||
|
||
::: | ||
|
||
|
||
## Check Your Learning {.unnumbered} | ||
|
||
::: {.check} | ||
|
||
**Before you move on to the next unit you may want to check that you are able to:** | ||
|
||
- Describe the place of leadership in results | ||
- Explain the discipline of results-based leadership | ||
- Contrast a team-based leadership style with other approaches to leadership | ||
|
||
::: | ||
|
Binary file not shown.
Binary file not shown.
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
Oops, something went wrong.