Skip to content

Commit d609fa8

Browse files
committed
Larger videos
1 parent 18cf4ee commit d609fa8

File tree

5 files changed

+26
-14
lines changed

5 files changed

+26
-14
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ social:
3333
collections:
3434
episodes:
3535
output: true
36-
permalink: /AbnormalDevOpsIterations/:path/:title/
36+
permalink: /AbnormalDevOpsIterations/:title/
3737
posts:
3838
output: true
3939
permalink: /blog/:year/:month/:day/:title/

_includes/adi_detail.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ <h1>{{ page.guest }} - {{ page.title }}</h2>
1616
<div class="tags">{% for tag in page.tags %}#{{ tag }} {% endfor %}</div>
1717
</div>
1818
<div class="col-lg-6">
19-
<iframe src="https://www.youtube.com/embed/{{ page.youtube }}" class="aspect-ratio--object" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
19+
<div class="video-container">
20+
<iframe src="https://www.youtube.com/embed/{{ page.youtube }}" class="video" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
21+
</div>
2022
</div>
2123
</div>
2224
</div>

_includes/adi_list.html

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,12 @@
44
<div class="row">
55
<div>
66
<div class="lead">
7-
Released weekly on:</br>
8-
<a href="https://youtube.com/@AbnormalDevOpsIterations" class="btn btn-default btn-lg" target="_blank"><i class="fa fa-youtube fa-fw"></i> <span class="network-name">YouTube</span></a>
9-
</div>
10-
<div class="lead">
11-
Audio only versions also available on:</br>
12-
<a href="https://open.spotify.com/show/4viAGMM539m0A230xqKhqD?si=bd0d41f805054313" target="_blank">Spotify</a></br>
13-
<a href="https://music.amazon.com/podcasts/fbb3a98e-1877-4e66-8b65-23388d0e867e/abnormal-devops-iterations" target="_blank">Amazon Music</a></br>
14-
</div>
15-
16-
<div class="lead">
17-
<ul class="posts">
7+
<h2>Abnormal DevOps Iterations: Human Intelligence</h2>
8+
<ul>
189
{% assign sorted_posts = site.episodes | sort: "path" | reverse %}
1910
{% for post in sorted_posts %}
2011
<li>
21-
<strong>{{ post.number }} </strong>: <a href="{{ site.url }}{{ post.url }}" target="_parent">{{ post.title }} with {{ post.guest }}</a>
12+
<strong>{{ post.number }} </strong> - {{ post.guest }}: <a href="{{ site.url }}{{ post.url }}" target="_parent">{{ post.title }}</a>
2213
</li>
2314
{% endfor %}
2415
</ul>

_includes/adi_splash.html

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
77
<h1>Abnormal DevOps Iterations</h1>
88
<hr class="intro-divider">
99
<h2>A podcast about Puppet, DevOps, IT operations, AI and everything</h2>
10+
<div class="lead">
11+
<a href="https://youtube.com/@AbnormalDevOpsIterations" class="btn btn-default btn-lg" target="_blank"><i class="fa fa-youtube fa-fw"></i> <span class="network-name">YouTube</span></a>
12+
</div>
13+
<div class="lead">
14+
Audio only versions:
15+
<a href="https://open.spotify.com/show/4viAGMM539m0A230xqKhqD?si=bd0d41f805054313" target="_blank">Spotify</a> and
16+
<a href="https://music.amazon.com/podcasts/fbb3a98e-1877-4e66-8b65-23388d0e867e/abnormal-devops-iterations" target="_blank">Amazon Music</a></br>
17+
</div>
1018
</div>
1119
</div>
1220
</div>

css/landing-page.css

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,3 +241,14 @@ footer {
241241
p.copyright {
242242
margin: 15px 0 0;
243243
}
244+
245+
246+
.video-container {
247+
width: 100%;
248+
aspect-ratio: 16 / 9;
249+
}
250+
251+
.video {
252+
width: 100%;
253+
height: 100%;
254+
}

0 commit comments

Comments
 (0)