Skip to content

Commit

Permalink
Remove links on blog and podcast detail page titles
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Sep 3, 2024
1 parent d1b696c commit a465fcc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion public/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1300,7 +1300,7 @@ h4,
margin-top: 2em;
}

.blg-summary h1 {
.blg-summary h1, .text-nextflow {
color: #0dc09d;
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/blog/[...post].astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const tags = entry.data.tags.split(",");
<div class="row">
<div class="col-sm-8">
<div class="blg-summary">
<h2><a href="#">{entry.data.title}</a></h2>
<h1>{entry.data.title}</h1>
<ul class="text-muted list-inline blg-header">
<li>
<i class="fa fa-user"></i>
Expand Down
8 changes: 3 additions & 5 deletions src/pages/podcast/[...episode].astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@ const is_deployment_preview = netlify_context == "deploy-preview";
<div class="row">
<div class="col-sm-8">
<div class="blg-summary podcast" data-golive={Date.parse(entry.data.date)}>
<h2>
<a href={entry.slug}>
<span class="label label-success">Episode {entry.data.episode}</span>
{entry.data.title}
</a>
<h2 class="text-nextflow">
<span class="label label-success">Episode {entry.data.episode}</span>
{entry.data.title}
</h2>
<h4 class="text-muted blg-description">{entry.data.description}</h4>
<ul class="text-muted list-inline blg-header">
Expand Down

0 comments on commit a465fcc

Please sign in to comment.