-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdeep-dives.html
58 lines (57 loc) · 1.63 KB
/
deep-dives.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
layout: default
title: Nuclear Power Deep Dives
description: >
A listing of deep-dive articles and resources going in depth
on nuclear history, economics, and more.
image: /img/dc_cook.jpg
author: nick
byline: false
last_modified_at: 2024-02-25
---
<main>
<div class="col-12">
<div class="row">
{%- assign deep = site.pages
| where_exp: 'page', "page.categories
contains 'deep dive'"
| sort: 'date'
| reverse
-%}
{%- for post in deep -%}
<div class="col-md-3 col-sm-12">
<div class="card h-100">
<a href="{{ post.url }}" class="stretched-link"></a>
<div class="ratio ratio-16x9 overflow-hidden">
<img
src="{{ post.image }}"
class="card-img-top img-crop"
alt="Header image for story"
>
</div>
<div class="card-body">
<h5 class="card-title">{{ post.title }}</h5>
<p class="card-text">
{{ post.description | truncatewords: 25 }}
</p>
<button class="border-0">
<img
class="m-1"
width="16"
height="16"
alt="Reactor icon"
src="img/reactor_web.svg"
>Read more
</button>
</div>
<div class="card-footer">
<small class="text-body-secondary"
>Posted on: {{ post.date | date: '%Y-%m-%d' -}}
</small>
</div>
</div>
</div>
{%- endfor -%}
</div>
</div>
</main>