Skip to content

Commit

Permalink
Rerouting
Browse files Browse the repository at this point in the history
  • Loading branch information
alvagante committed Dec 28, 2024
1 parent fac8db5 commit 18cf4ee
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
5 changes: 4 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ social:
collections:
episodes:
output: true
permalink: /episodes/:path/
permalink: /AbnormalDevOpsIterations/:path/:title/
posts:
output: true
permalink: /blog/:year/:month/:day/:title/
21 changes: 14 additions & 7 deletions _includes/adi_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,22 @@
<div class="content-section-a">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1>ADI {{ page.number }}: {{ page.guest }} - {{ page.title }}</h2>
<div class="aspect-ratio aspect-ratio--16x9 mt4">
<iframe src="https://www.youtube.com/embed/{{ page.youtube }}" class="aspect-ratio--object" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<div class="col-lg-4">
<h2><a href="{{ site.url }}/AbnormalDevOpsIterations/">Abnormal DevOps Iteration {{ page.number }}</a></h2>
Posted: {{ page.date | date: "%Y-%m-%d" }}
</div>
<div class="col-lg-8">
<h1>{{ page.guest }} - {{ page.title }}</h2>
</div>
</div>
<div class="row">
<div class="col-lg-6">
{{ content }}
<div class="tags">{% for tag in page.tags %}#{{ tag }} {% endfor %}</div>
</div>
<div class="post">{{ content }}</div>
<div class="col-lg-6">
<iframe src="https://www.youtube.com/embed/{{ page.youtube }}" class="aspect-ratio--object" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<div class="tags">{{ page.tags }}</div>
</div>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion _includes/blog_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="row">
<div class="col-lg-4">
<h2><a href="{{ site.url }}/blog/">example42's blog</a></h2>
{{ page.date | date: "%Y-%m-%d" }}
Posted: {{ page.date | date: "%Y-%m-%d" }}
</div>
<div class="col-lg-8">
<h1>{{ page.title }}</h1>
Expand Down

0 comments on commit 18cf4ee

Please sign in to comment.