diff --git a/_layouts/post.html b/_layouts/post.html index d7ed59f..1b919f3 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -14,6 +14,12 @@ layout: default

- {{ content }} + {% if page.banner %} + + {% endif %} {{ content }} diff --git a/_posts/2024-03-13-neopass-for-dti.md b/_posts/2024-03-13-neopass-for-dti.md index 68cf677..a034e26 100644 --- a/_posts/2024-03-13-neopass-for-dti.md +++ b/_posts/2024-03-13-neopass-for-dti.md @@ -3,6 +3,10 @@ layout: post title: "NeoPass for DTI" date: 2024-03-13 12:20:00 -0700 author: Matchu +banner: + url: /assets/images/banners/neopass.webp + width: 800 + height: 232 excerpt: |

We've got big news coming up: we're partnering with Neopets to add "Login with NeoPass" and some other integrations to bring our sites a bit closer diff --git a/_posts/2024-09-20-state-of-dti-2024.md b/_posts/2024-09-20-state-of-dti-2024.md index f468e9c..7126e0c 100644 --- a/_posts/2024-09-20-state-of-dti-2024.md +++ b/_posts/2024-09-20-state-of-dti-2024.md @@ -3,6 +3,10 @@ layout: post title: "State of DTI: 2024" date: 2024-09-20 13:15:00 -0700 author: Matchu +banner: + url: /assets/images/banners/state-of-dti-2024.webp + width: 800 + height: 267 excerpt: |

After 15 years of DTI, and 15 years of changing circumstances, our primary focus is keeping DTI around for the diff --git a/assets/css/main.css b/assets/css/main.css index b45553b..4eada6e 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -90,6 +90,13 @@ article { } } + > img { + display: block; + max-width: 100%; + height: auto; + margin-inline: auto; + } + > :is(p, ul) { font-family: var(--body-font-family); line-height: 1.4; diff --git a/assets/images/banners/neopass.png b/assets/images/banners/neopass.png new file mode 100644 index 0000000..8b15fb8 Binary files /dev/null and b/assets/images/banners/neopass.png differ diff --git a/assets/images/banners/neopass.webp b/assets/images/banners/neopass.webp new file mode 100644 index 0000000..8106d43 Binary files /dev/null and b/assets/images/banners/neopass.webp differ diff --git a/assets/images/banners/state-of-dti-2024.png b/assets/images/banners/state-of-dti-2024.png new file mode 100644 index 0000000..769eddb Binary files /dev/null and b/assets/images/banners/state-of-dti-2024.png differ diff --git a/assets/images/banners/state-of-dti-2024.webp b/assets/images/banners/state-of-dti-2024.webp new file mode 100644 index 0000000..eb380c2 Binary files /dev/null and b/assets/images/banners/state-of-dti-2024.webp differ