diff --git a/_includes/item-list-link.html b/_includes/item-list-link.html new file mode 100644 index 00000000..60b38972 --- /dev/null +++ b/_includes/item-list-link.html @@ -0,0 +1,7 @@ +
  • {% if item.pinned %}📌 {% endif %} + {{ item.title }} + {% if item.status == ":seedling:" %} :seedling:{% endif %} + {% if item.status == ":herb:" %} :herb:{% endif %} + {% if item.status == ":evergreen_tree:" %} :evergreen_tree:{% endif %} + +
  • \ No newline at end of file diff --git a/_includes/wikifooter.html b/_includes/wikifooter.html index 4342f7ec..443fb073 100644 --- a/_includes/wikifooter.html +++ b/_includes/wikifooter.html @@ -1,7 +1,17 @@ -
    -
    -
    :seedling: = emerging note
    -
    :herb: = established note
    -
    :evergreen_tree: = evergreen note
    -
    +
    +
    +
      +
    • :seedling: = emerging note
    • +
    • :herb: = established note
    • +
    • :evergreen_tree: = evergreen note
    • +
    +
    +
    +
      +
    • + + :unlock: = open access
    • +
    • :closed_lock_with_key: = paywalled
    • +
    +
    \ No newline at end of file diff --git a/_layouts/note.html b/_layouts/note.html index 6f14929d..8b998103 100644 --- a/_layouts/note.html +++ b/_layouts/note.html @@ -33,9 +33,11 @@ {% if page.reading %}

    Details

    {% if page.reading-articles %} :page_facing_up: "{{ page.title }}"
    {% endif %} - {% if page.reading-books %} :book: {{ page.title }}
    {% endif %} - {% if page.work_link %}Link: {{ page.work_link_text }}
    {% endif %} - By: {{ page.work_author }}
    + {% if page.reading-books %} :book: {{ page.title }}
    {% endif %} + {% if page.access == "oa" %}Link: {{ page.work_link_text }} :unlock:
    {% endif %} + {% if page.access == "paywalled" %}Link: {{ page.work_link_text }} :closed_lock_with_key:
    {% endif %} + {% if page.access != "paywalled" and page.access !="oa" %}Link: {{ page.work_link_text }}
    {% endif %} + By: {{ page.work_author }}
    Started: {{ page.date_started }} {% if page.date_read %}
    Finished: {{ page.date_read }}{% endif %}
    Amount read: {{ page.progress_current }} of {{ page.progress_max }} {% if page.reading-articles or page.reading-books %}pages {% elsif page.reading-lists %}works {% endif %}

    diff --git a/_notes/Reading/Articles/riggs-and-linder-actively-engaging-students.md b/_notes/Reading/Articles/riggs-and-linder-actively-engaging-students.md index 999a9836..34e32cde 100644 --- a/_notes/Reading/Articles/riggs-and-linder-actively-engaging-students.md +++ b/_notes/Reading/Articles/riggs-and-linder-actively-engaging-students.md @@ -3,6 +3,7 @@ date: 2023-02-01 last_modified_at: 2023-02-01 reading: true reading-articles: true +reading-type: "article" excerpt: "This paper suggests a three-pronged approach for conceptualizing active learning in the online asynchronous class: the creation of an architecture of engagement in the online classroom, the use of web-based tools in addition to the learning management system, and a re-imagining of discussion boards as interactive spaces." status: ":herb:" published: true @@ -10,6 +11,7 @@ title: "Actively Engaging Students in Asynchronous Online Classes." work_author: "Shannon A. Riggs and Kathryn E. Linder" work_link: "https://www.ideaedu.org/idea_papers/actively-engaging-students-in-asynchronous-online-classes/" work_link_text: "IDEA Center" +access: "oa" year_read: 2023 date_read: 2023-01-20 date_started: 2023-01-19 diff --git a/_notes/Reading/Articles/turner-ponce-de-leon-discovery-reconsidered.md b/_notes/Reading/Articles/turner-ponce-de-leon-discovery-reconsidered.md index 77c984c0..5472100f 100644 --- a/_notes/Reading/Articles/turner-ponce-de-leon-discovery-reconsidered.md +++ b/_notes/Reading/Articles/turner-ponce-de-leon-discovery-reconsidered.md @@ -10,6 +10,8 @@ title: "Juan Ponce de León and the Discovery of Florida Reconsidered." work_author: "Samuel Turner" work_link: "https://stars.library.ucf.edu/fhq/vol92/iss1/3/" work_link_text: "The Florida Historical Quarterly" +open_access: true +access: "oa" year_read: 2024 date_read: 2024-05-01 date_started: 2024-05-01 diff --git a/_notes/Reading/Books/index.html b/_notes/Reading/Books/index.html index 2d3fd563..9641f0e6 100644 --- a/_notes/Reading/Books/index.html +++ b/_notes/Reading/Books/index.html @@ -22,7 +22,7 @@

    Pinned {{page.title}} notes

    {% endunless %} -

    All my notes on books I've read

    +

    All my notes on books

    {% assign reading-books_notes_all = site.notes | where:"reading-books","true" | sort: "date_read" %} {% if reading-books_notes_all.size > 0 %}
    -

    All notes on what I've read

    -{% assign reading_notes_all = site.notes | where:"reading","true" | sort: "date_read" %} +

    All my reading notes

    +{% assign reading_notes_all = site.notes | where:"reading","true" | sort_natural: "title" %} {% if reading_notes_all.size > 0 %}
    {% else %}

    There's nothing here yet!

    {% endif %} -

    All my reading notes, by the year I finished it

    -

    2024

    +

    All my reading notes, by year finished

    -{% assign reading_notes_2024 = site.notes | where: "year_read", "2024" %} +{% assign reading_notes_by_year = reading_notes_all | where_exp:"item", "item.year_read > 2022" | group_by:"year_read" %} +{% for year in reading_notes_by_year reversed %} +
    +

    {{ year.name }}

    + +
    +{% endfor %} -{% for item in reading_notes_2024 %} -