Skip to content

Commit

Permalink
relative links filter removed
Browse files Browse the repository at this point in the history
  • Loading branch information
bgalek committed Jul 10, 2024
1 parent 5f91eac commit be6b984
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ description: "Welcome to our technology blog. We use Open Source solutions on a
timezone: Europe/Warsaw
permalink: /:year/:month/:title.html
repository: allegro/blog
baseurl: /
plugins:
- jekyll-postcss
- jekyll-paginate-v2
Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
<span class="text-sm">{{ post.date | timeago }}</span>
</div>
<h2 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white">
<a href="{{ post.url | relative_url }}" class="no-underline hover:underline">{{ post.title }}</a>
<a href="{{ post.url }}" class="no-underline hover:underline">{{ post.title }}</a>
</h2>
<div class="flex gap-4 overflow-x-scroll" style="scrollbar-width: none;">
{% for tag in post.tags limit:3 %}
<a href="{{ '/tag/' | append: tag | replace: " ","-" | relative_url }}" class="no-underline hover:underline text-primary-600 dark:text-primary-500 text-xs font-medium inline-flex items-center py-0.5 px-0 whitespace-nowrap">
<a href="{{ '/tag/' | append: tag | replace: " ","-" }}" class="no-underline hover:underline text-primary-600 dark:text-primary-500 text-xs font-medium inline-flex items-center py-0.5 px-0 whitespace-nowrap">
<svg class="mr-1 w-3 h-3 text-primary-600 dark:text-primary-500" aria-hidden="true"
xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="currentColor"
viewBox="0 0 24 24">
Expand Down

0 comments on commit be6b984

Please sign in to comment.