Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e09487abdb |
@@ -26,3 +26,4 @@ $surface: #1a1e29
|
|||||||
$border: #3a4054
|
$border: #3a4054
|
||||||
$text: #ffffff
|
$text: #ffffff
|
||||||
$text-subtle: #bfc9e6
|
$text-subtle: #bfc9e6
|
||||||
|
$text-grey: #80869a
|
||||||
|
|||||||
@@ -74,6 +74,12 @@ table#taxonomy-table
|
|||||||
&:hover, &:focus
|
&:hover, &:focus
|
||||||
color: $accent
|
color: $accent
|
||||||
|
|
||||||
|
a.not-maintained, span.not-maintained
|
||||||
|
color: $text-grey !important
|
||||||
|
font-style: italic
|
||||||
|
opacity: 0.7&:hover, &:focus
|
||||||
|
color: $text-subtle
|
||||||
|
|
||||||
#taxonomy-page a.term-link
|
#taxonomy-page a.term-link
|
||||||
padding: 0.3rem 1.2rem
|
padding: 0.3rem 1.2rem
|
||||||
margin: 0.2rem
|
margin: 0.2rem
|
||||||
|
|||||||
+1
-1
@@ -14,7 +14,7 @@
|
|||||||
<!-- <section> -->
|
<!-- <section> -->
|
||||||
<!-- </section> -->
|
<!-- </section> -->
|
||||||
|
|
||||||
{{ $pages := shuffle (where site.RegularPages "Section" "tools") | first 20 }}
|
{{ $pages := shuffle (where (where site.RegularPages "Section" "tools") "Params.maintenance" "intersect" (slice "Actively Maintained")) | first 20 }}
|
||||||
<section>
|
<section>
|
||||||
<h2>Try Something New</h2>
|
<h2>Try Something New</h2>
|
||||||
<p><strong>Proudly featuring {{ len (where site.RegularPages "Section" "tools") }} tools and counting!</strong>
|
<p><strong>Proudly featuring {{ len (where site.RegularPages "Section" "tools") }} tools and counting!</strong>
|
||||||
|
|||||||
@@ -54,8 +54,8 @@
|
|||||||
{{ if .Params.maintenance }}
|
{{ if .Params.maintenance }}
|
||||||
{{ if in .Params.maintenance "Not Maintained" }}
|
{{ if in .Params.maintenance "Not Maintained" }}
|
||||||
<div style="display: flex; align-items: center; gap: 8px;">
|
<div style="display: flex; align-items: center; gap: 8px;">
|
||||||
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
<a href="{{ .RelPermalink }}" class="not-maintained">{{ .LinkTitle }}</a>
|
||||||
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span>
|
<!-- <span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span> -->
|
||||||
</div>
|
</div>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
<a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a>
|
||||||
@@ -108,8 +108,8 @@
|
|||||||
</table>
|
</table>
|
||||||
|
|
||||||
<div style="display: flex; align-items: center; gap: 8px; margin: 1rem 0 0 0;">
|
<div style="display: flex; align-items: center; gap: 8px; margin: 1rem 0 0 0;">
|
||||||
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span>
|
<!-- <span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(128, 28, 28);"></span> -->
|
||||||
<span style="color: rgb(128, 28, 28); font-size: 1rem;">Red dot indicates tool has not been updated or maintained recently</span>
|
<span class="not-maintained">Grey text indicates tool has not been updated or maintained recently</span>
|
||||||
</div>
|
</div>
|
||||||
<!-- <div style="display: flex; align-items: center; gap: 8px; margin: 0;">
|
<!-- <div style="display: flex; align-items: center; gap: 8px; margin: 0;">
|
||||||
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(143, 96, 15);"></span>
|
<span style="display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: rgb(143, 96, 15);"></span>
|
||||||
|
|||||||
Reference in New Issue
Block a user