Skip to content

Commit

Permalink
added 2.8, u1 zip and replace invalid links
Browse files Browse the repository at this point in the history
  • Loading branch information
chloecwh committed Nov 19, 2024
1 parent b26a90f commit e0c8918
Show file tree
Hide file tree
Showing 21 changed files with 2,022 additions and 583 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file added .vscode/.DS_Store
Binary file not shown.
48 changes: 13 additions & 35 deletions .vscode/settings.json
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 added 101-v7-20241119-2.8.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# version 2.6
# version 2.8

project:
type: book
Expand Down
Binary file added assets/u1/ldrs101-vault-main.zip
Binary file not shown.
145 changes: 145 additions & 0 deletions cheatsheet.qmd
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 modified docs/LDRS-101.docx
Binary file not shown.
Binary file added docs/assets/u1/ldrs101-vault-main.zip
Binary file not shown.
36 changes: 18 additions & 18 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ <h1 class="title column-body">LDRS 101</h1>
</div>
<div>
<div class="quarto-title-meta-heading"><p>Last Modified</p></div>
<div class="quarto-title-meta-contents"><p>Oct 28, 2024</p></div>
<div class="quarto-title-meta-contents"><p>Nov 19, 2024</p></div>
</div>
</div>
</div>
Expand Down Expand Up @@ -235,24 +235,24 @@ <h2 class="unnumbered anchored" data-anchor-id="course-activities">Course Activi
</div>
</div>
<p>Below is an accordion.</p>
<div class="callout callout-style-simple accordion callout-note no-icon callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".accordion-1-contents" aria-controls="accordion-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-title-container flex-fill">
This is an accordion. Click/tap this banner to show/hide the content.
</div>
<button class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></button>
</div>
<div id="accordion-1" class="accordion-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>An accordion may contain extra content such as worked examples or
<div class="callout callout-style-simple accordion callout-note no-icon callout-titled">
<div class="callout-header d-flex align-content-center" data-bs-toggle="collapse" data-bs-target=".accordion-1-contents" aria-controls="accordion-1" aria-expanded="false" aria-label="Toggle callout">
<div class="callout-icon-container">
<i class="callout-icon no-icon"></i>
</div>
<div class="callout-title-container flex-fill">
This is an accordion. Click/tap this banner to show/hide the content.
</div>
<button class="callout-btn-toggle d-inline-block border-0 py-1 ps-1 pe-0 float-end"><i class="callout-toggle"></i></button>
</div>
<div id="accordion-1" class="accordion-1-contents callout-collapse collapse">
<div class="callout-body-container callout-body">
<p>An accordion may contain extra content such as worked examples or
sample answers.</p>
</div>
</div>
</div>

</div>
</div>
</div>


</section>
Expand Down
Loading

0 comments on commit e0c8918

Please sign in to comment.