Skip to content
Merged
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
6 changes: 3 additions & 3 deletions themes/opendk/views/showcase.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,12 @@ <h1 class="text-4xl font-semibold mb-3">
<!-- end of full readme -->

<!-- Keywords section -->
{% if dataset.keywords %}
{% if dataset.keywords and dataset.keywords.length !== 0 %}
<div class="container">
<h2 class="text-3xl font-semibold mt-gutter mb-2 text-gray-900 mb-6">{{__('Keywords')}}</h2>
<h2 class="text-2xl font-semibold mt-gutter mb-4">{{__('Keywords')}}</h2>
<div class="flex flex-wrap ">
{% for t in dataset.keywords %}
<a href="/search?q=tags:{{t | safe}}" class="px-4 py-2 text-primary font-medium border-2 rounded-full border-primary mr-3 mb-3 lowercase">{{t | safe}}</a>
<a href="/search?q=tags:{{t | safe}}" class="px-4 py-2 text-primary font-sm border-2 rounded-full border-primary mr-3 mb-3 lowercase">{{t | safe}}</a>
{% endfor %}
</div>
</div>
Expand Down