Skip to content

Commit a6af1b4

Browse files
committed
add visuals section
1 parent 734728b commit a6af1b4

5 files changed

Lines changed: 63 additions & 0 deletions

File tree

_config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@ collections:
7878
lists:
7979
output: true
8080
permalink: /lists/:title/
81+
visuals:
82+
output: true
83+
permalink: /visuals/:title/
8184

8285
# Use the following plug-ins
8386
plugins:

_visuals/6hats.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
layout: page
3+
title: Practicing Systemic Thinking with Six Thinking Hats
4+
date: 2026-04-04
5+
description: A visual guide to the Six Thinking Hats decision-making technique
6+
---
7+
8+
Edward de Bono's [Six Thinking Hats](https://www.debonogroup.com/services/core-programs/six-thinking-hats/) is a nice tool to practive systems thinking, here's my take on it.
9+
10+
<br>
11+
12+
<iframe src="https://drive.google.com/file/d/1mIpg7FDmmwQbT8BRiAoSZU6gRjpMADAD/preview" width="100%" height="1200px" allow="autoplay"></iframe>

light.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,18 @@ i.fa.fa-link {
516516
transform: rotate(45deg);
517517
}
518518

519+
.all-visuals {
520+
section {
521+
margin-bottom: 1.5em;
522+
padding-bottom: 1em;
523+
border-bottom: 1px solid #ddd;
524+
}
525+
526+
h4 {
527+
margin: 0.5em 0;
528+
}
529+
}
530+
519531
// Settled on moving the import of syntax highlighting to the bottom of the CSS
520532
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
521533
@import "highlights";

style.scss

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,18 @@ i.fa.fa-link {
630630
content: "]";
631631
}
632632

633+
.all-visuals {
634+
section {
635+
margin-bottom: 1.5em;
636+
padding-bottom: 1em;
637+
border-bottom: 1px solid #333;
638+
}
639+
640+
h4 {
641+
margin: 0.5em 0;
642+
}
643+
}
644+
633645
// Settled on moving the import of syntax highlighting to the bottom of the CSS
634646
// ... Otherwise it really bloats up the top of the CSS file and makes it difficult to find the start
635647
@import "highlights";

visuals.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
layout: page
3+
title: Visuals
4+
description: A collection of visual content, diagrams, and illustrations I've created.
5+
permalink: /visuals/
6+
---
7+
8+
This page showcases visual content including diagrams, illustrations, and other visual materials I've created.
9+
10+
{% if site.visuals.size > 0 %}
11+
<div class="all-visuals">
12+
{% assign sorted_visuals = site.visuals | sort: 'date' | reverse %}
13+
{% for visual in sorted_visuals %}
14+
<section>
15+
<h4>
16+
<a class="mark" href="{{ site.baseurl }}{{ visual.url }}">{{ visual.title }}</a>
17+
📅 {{ visual.date | date: "%B %e, %Y" }}
18+
</h4>
19+
</section>
20+
{% endfor %}
21+
</div>
22+
{% else %}
23+
<p>No visuals yet. Check back soon!</p>
24+
{% endif %}

0 commit comments

Comments
 (0)