Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions themes/powershell-community/layouts/_default/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h2 class="text-xl font-bold text-gray-900 mb-3">
{{ .Title }}
</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
<div class="flex items-center space-x-4">
<a href="{{ .RelPermalink }}"
class="inline-flex items-center bg-purple-600 text-white px-4 py-2 rounded-lg text-sm font-medium hover:bg-purple-700 transition-colors duration-200">
Expand Down Expand Up @@ -103,7 +103,7 @@ <h2 class="text-xl font-bold text-gray-900 mb-3">
</a>
</h2>

<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>

<div class="flex items-center justify-between">
<a href="{{ .RelPermalink }}"
Expand Down
4 changes: 2 additions & 2 deletions themes/powershell-community/layouts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ <h3 class="text-lg font-semibold text-gray-900 mb-3 line-clamp-2">
{{ .Title }}
</a>
</h3>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
<a href="{{ .RelPermalink }}"
class="inline-flex items-center text-blue-600 font-medium hover:text-blue-700">
Listen Now <i class="fas fa-play ml-2"></i>
Expand Down Expand Up @@ -211,7 +211,7 @@ <h3 class="text-lg font-semibold text-gray-900 mb-3 line-clamp-2">
{{ .Title }}
</a>
</h3>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
{{ with .Params.author }}
<div class="flex items-center text-sm text-gray-500">
<i class="fas fa-user-circle mr-2"></i>
Expand Down
2 changes: 1 addition & 1 deletion themes/powershell-community/layouts/podcast/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ <h2 class="text-xl lg:text-2xl font-bold text-gray-900 mb-3">
{{ .Title }}
</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
<div class="flex flex-wrap items-center gap-4">
<a href="{{ .RelPermalink }}"
class="inline-flex items-center bg-purple-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-purple-700 transition-colors duration-200">
Expand Down
4 changes: 2 additions & 2 deletions themes/powershell-community/layouts/taxonomy/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ <h2 class="text-xl lg:text-2xl font-bold text-gray-900 mb-3">
{{ .Title }}
</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
<div class="flex flex-wrap items-center gap-4">
<a href="{{ .RelPermalink }}"
class="inline-flex items-center bg-purple-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-purple-700 transition-colors duration-200">
Expand Down Expand Up @@ -133,7 +133,7 @@ <h2 class="text-xl lg:text-2xl font-bold text-gray-900 mb-3">
{{ .Title }}
</a>
</h2>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary }}</p>
<p class="text-gray-600 mb-4 line-clamp-3">{{ .Summary | plainify | truncate 300 }}</p>
<div class="flex flex-wrap items-center gap-4">
<a href="{{ .RelPermalink }}"
class="inline-flex items-center bg-blue-600 text-white px-4 py-2 rounded-lg font-medium hover:bg-blue-700 transition-colors duration-200">
Expand Down
Loading