Skip to content

Commit 062740f

Browse files
committed
Update blog tags and pagination to use gradient theme
1 parent cfebf22 commit 062740f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blog/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ <h2 class="text-xl md:text-2xl font-bold text-gray-900 mb-2">
4545
<span class="text-gray-400"></span>
4646
<div class="flex flex-wrap gap-2">
4747
{% for category in post.categories %}
48-
<span class="bg-blue-100 text-blue-700 px-2 py-1 rounded-md text-xs font-medium">
48+
<span class="bg-gradient-to-r from-blue-600 to-purple-600 text-white px-2 py-1 rounded-md text-xs font-medium">
4949
{{ category | replace: '_', ' ' | capitalize }}
5050
</span>
5151
{% endfor %}
@@ -99,7 +99,7 @@ <h2 class="text-xl md:text-2xl font-bold text-gray-900 mb-2">
9999
<div class="flex items-center gap-2">
100100
{% for page in (1..paginator.total_pages) %}
101101
{% if page == paginator.page %}
102-
<span class="px-3 py-2 text-sm font-medium text-white bg-blue-600 rounded-md">
102+
<span class="px-3 py-2 text-sm font-medium text-white bg-gradient-to-r from-blue-600 to-purple-600 rounded-md">
103103
{{ page }}
104104
</span>
105105
{% elsif page == 1 %}

0 commit comments

Comments
 (0)