Skip to content

Commit b0944ba

Browse files
committed
fix: list ui for lists + make links clickable in systems thinking list
1 parent 9ef2e5c commit b0944ba

2 files changed

Lines changed: 34 additions & 37 deletions

File tree

_lists/systems-thinking.md

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,56 +8,62 @@ date: 2026-03-02
88

99
## Articles
1010

11-
- https://systemsthinkingalliance.org/brief-history-of-systems-thinking/
12-
- https://mihirsmusings.wordpress.com/category/complexity/systems-thinking/
11+
- [Brief History of Systems Thinking](https://systemsthinkingalliance.org/brief-history-of-systems-thinking/)
12+
- [My Journey of Systems Thinking – Mihir](https://mihirsmusings.wordpress.com/category/complexity/systems-thinking/)
1313

1414
## Tools
1515

16-
- https://ncase.me/loopy/
16+
- [Loopy](https://ncase.me/loopy/)
1717

1818
## Websites
1919

20-
- https://thesystemsthinker.com/
21-
- https://teachyourselfsystems.com/
20+
- [Systems Thinker](https://thesystemsthinker.com/)
21+
- [Teach Yourself Systems](https://teachyourselfsystems.com/)
2222

2323
## Courses
2424

2525
- https://acumenacademy.org/course/systems-practice/
26-
- Add link to Open University Course as well
26+
- [Systems thinking and practice](https://www.open.edu/openlearn/digital-computing/systems-thinking-and-practice)
2727

2828
## Presentations/Slides
2929

30-
- https://learningforsustainability.net/wp-content/uploads/2019/01/Intro-systems-thinking-and-systemic-design-concepts-and-tools.pdf
30+
- [An introduction to systems thinking and systemic design – concepts and tools](https://learningforsustainability.net/wp-content/uploads/2019/01/Intro-systems-thinking-and-systemic-design-concepts-and-tools.pdf)
3131

3232
## Books
3333

3434
TODO
3535

3636
## Videos
37-
- https://www.youtube.com/@SystemsInnovationNetwork
38-
- TODO: add my playlist
37+
38+
### Dedicated Channels
39+
40+
- [Systems Innovation Network](https://www.youtube.com/@SystemsInnovationNetwork)
41+
42+
### Playlists
43+
44+
- [Videos curated by me](https://youtube.com/playlist?list=PLsZPZn9jXdrUkSFKIoqF1pwIbfDYOjpQH&si=0yKyjQq2s83NvjwZ)
3945

4046
## Communities
4147

42-
- https://stream.syscoi.com/
48+
- [Systems Community of Inquiry](https://stream.syscoi.com/)
4349

4450
## Case Studies
4551

46-
- https://health-policy-systems.biomedcentral.com/articles/10.1186/1478-4505-12-47
52+
- [Advancing the application of systems thinking in health: understanding the growing complexity governing immunization services in Kerala, India](https://health-policy-systems.biomedcentral.com/articles/10.1186/1478-4505-12-47)
4753

4854
## Organisations
4955

50-
- https://www.systemspractice.org/
51-
- https://waterscenterst.org/
52-
- https://www.sysi.org/
53-
- https://systemsthinkingalliance.org/
54-
- https://schoolofsystemchange.org/
55-
- https://www.stsi.pro/
56+
- [Systems and Complexity in Organization](https://www.systemspractice.org/)
57+
- [Waters Center For Systems Thinking](https://waterscenterst.org/)
58+
- [Systems Society of India](https://www.sysi.org/)
59+
- [Systems Thinking Alliance](https://systemsthinkingalliance.org/)
60+
- [School of System Change](https://schoolofsystemchange.org/)
61+
- [Systems Thinking Standards Institute](https://www.stsi.pro/)
5662

5763
## Miscellaneous
5864

59-
- https://onlinelibrary.wiley.com/doi/epdf/10.1002/sdr.1641
60-
- https://www.scienceopen.com/collection/ef913d31-69a2-419a-8f69-2a24b3c75dfd
65+
<!-- - [A system dynamics glossary](https://onlinelibrary.wiley.com/doi/epdf/10.1002/sdr.1641) -->
66+
- [Journal of Systems Thinking - OA](https://www.scienceopen.com/collection/ef913d31-69a2-419a-8f69-2a24b3c75dfd)
6167

6268
## More like this
6369

lists.md

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,15 @@ permalink: /lists/
88
This page lists the different topics I explore, along with the resources I use to learn about each one.
99

1010
{% if site.lists.size > 0 %}
11-
<div class="lists">
12-
{% for list in site.lists reversed %}
13-
<article class="list-item">
14-
<h2><a href="{{ site.baseurl }}{{ list.url }}">{{ list.title }}</a></h2>
15-
<!-- {% if list.tags %}
16-
<div class="postTags" style="margin: 10px 0;">
17-
{% for tag in list.tags %}
18-
<span id="pagetags" class="mark">
19-
<a href="/tag/{{ tag }}/"><b>📌 {{ tag }}</b></a>
20-
</span>
21-
{% endfor %}
22-
</div>
23-
{% endif %} -->
24-
<div class="description">
25-
{{ list.description }}
26-
</div>
27-
<hr>
28-
</article>
11+
<div class="all-lists">
12+
{% assign sorted_lists = site.lists | sort: 'date' | reverse %}
13+
{% for list in sorted_lists %}
14+
<section>
15+
<h4>
16+
<a class="mark" href="{{ site.baseurl }}{{ list.url }}">{{ list.title }}</a>
17+
📅 {{ list.date | date: "%B %e, %Y" }}
18+
</h4>
19+
</section>
2920
{% endfor %}
3021
</div>
3122
{% else %}

0 commit comments

Comments
 (0)