Skip to content

Commit 885e782

Browse files
DOC-5131 added suggestions from feedback
1 parent 18b7537 commit 885e782

File tree

2 files changed

+22
-21
lines changed

2 files changed

+22
-21
lines changed

layouts/develop/list.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ <h1>
3636
{{ end }}
3737

3838
<!-- Responsive CLI Display Block as Table -->
39-
{{ if eq .RelPermalink "/develop/" }}
39+
{{ if strings.HasSuffix .RelPermalink "/develop/" }}
4040
<div class="overflow-x-auto">
41-
<table class="w-full border-collapse md:table">
41+
<table class="w-full border-collapse md:table" style="background-color: rgb(240,240,240)">
4242
<thead>
4343
<tr>
4444
<th class="p-4 text-left">Try these Redis commands</th>
@@ -54,7 +54,8 @@ <h1>
5454
<code><a href="/commands/set">SET</a> e 2.71</code></br>
5555
<code><a href="/commands/incrbyfloat">INCRBYFLOAT</a> e 0.43</code></br>
5656
<code><a href="/commands/rename">RENAME</a> e pi</code></br>
57-
<code><a href="/commands/get">GET</a> pi</code>
57+
<code><a href="/commands/get">GET</a> pi</code><br/><br/>
58+
# <a href="/commands/">See all commands</a>
5859
</td>
5960
<td class="align-top p-4 w-full md:w-[60%]">
6061
<div class="bg-slate-900 rounded-xl shadow-lg shadow-slate-900/10 h-60 overflow-y-auto">

layouts/shortcodes/client-splash.html

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,73 +11,73 @@
1111
<tr>
1212
<td><a href='{{- relref . "/develop/clients/redis-py" -}}'>Python</a></td>
1313
<td style="text-align:center">
14-
<a href='{{- relref . "/develop/clients/redis-py/connect" -}}'>&#9989;</a>
14+
<a href='{{- relref . "/develop/clients/redis-py/connect" -}}'>See Python examples</a>
1515
</td>
1616
<td style="text-align:center">
17-
<a href='{{- relref . "/develop/clients/redis-py/queryjson" -}}'>&#9989;</a>
17+
<a href='{{- relref . "/develop/clients/redis-py/queryjson" -}}'>See Python examples</a>
1818
</td>
1919
<td style="text-align:center">
20-
<a href='{{- relref . "/develop/clients/redis-py/vecsearch" -}}'>&#9989;</a>
20+
<a href='{{- relref . "/develop/clients/redis-py/vecsearch" -}}'>See Python examples</a>
2121
</td>
2222
</tr>
2323
<tr>
2424
<td><a href='{{- relref . "/develop/clients/dotnet" -}}'>C#/.NET</a></td>
2525
<td style="text-align:center">
26-
<a href='{{- relref . "/develop/clients/dotnet/connect" -}}'>&#9989;</a>
26+
<a href='{{- relref . "/develop/clients/dotnet/connect" -}}'>See C# examples</a>
2727
</td>
2828
<td style="text-align:center">
29-
<a href='{{- relref . "/develop/clients/dotnet/queryjson" -}}'>&#9989;</a>
29+
<a href='{{- relref . "/develop/clients/dotnet/queryjson" -}}'>See C# examples</a>
3030
</td>
3131
<td style="text-align:center">
32-
<a href='{{- relref . "/develop/clients/dotnet/vecsearch" -}}'>&#9989;</a>
32+
<a href='{{- relref . "/develop/clients/dotnet/vecsearch" -}}'>See C# examples</a>
3333
</td>
3434
</tr>
3535
<tr>
3636
<td><a href='{{- relref . "/develop/clients/nodejs" -}}'>Node.js</a></td>
3737
<td style="text-align:center">
38-
<a href='{{- relref . "/develop/clients/nodejs/connect" -}}'>&#9989;</a>
38+
<a href='{{- relref . "/develop/clients/nodejs/connect" -}}'>See JS examples</a>
3939
</td>
4040
<td style="text-align:center">
41-
<a href='{{- relref . "/develop/clients/nodejs/queryjson" -}}'>&#9989;</a>
41+
<a href='{{- relref . "/develop/clients/nodejs/queryjson" -}}'>See JS examples</a>
4242
</td>
4343
<td style="text-align:center">
44-
<a href='{{- relref . "/develop/clients/nodejs/vecsearch" -}}'>&#9989;</a>
44+
<a href='{{- relref . "/develop/clients/nodejs/vecsearch" -}}'>See JS examples</a>
4545
</td>
4646
</tr>
4747
<tr>
4848
<td><a href='{{- relref . "/develop/clients/jedis" -}}'>Java</a></td>
4949
<td style="text-align:center">
50-
<a href='{{- relref . "/develop/clients/jedis/connect" -}}'>&#9989;</a>
50+
<a href='{{- relref . "/develop/clients/jedis/connect" -}}'>See Java examples</a>
5151
</td>
5252
<td style="text-align:center">
53-
<a href='{{- relref . "/develop/clients/jedis/queryjson" -}}'>&#9989;</a>
53+
<a href='{{- relref . "/develop/clients/jedis/queryjson" -}}'>See Java examples</a>
5454
</td>
5555
<td style="text-align:center">
56-
<a href='{{- relref . "/develop/clients/jedis/vecsearch" -}}'>&#9989;</a>
56+
<a href='{{- relref . "/develop/clients/jedis/vecsearch" -}}'>See Java examples</a>
5757
</td>
5858
</tr>
5959
<tr>
6060
<td><a href='{{- relref . "/develop/clients/go" -}}'>Go</a></td>
6161
<td style="text-align:center">
62-
<a href='{{- relref . "/develop/clients/go/connect" -}}'>&#9989;</a>
62+
<a href='{{- relref . "/develop/clients/go/connect" -}}'>See Go examples</a>
6363
</td>
6464
<td style="text-align:center">
65-
<a href='{{- relref . "/develop/clients/go/queryjson" -}}'>&#9989;</a>
65+
<a href='{{- relref . "/develop/clients/go/queryjson" -}}'>See Go examples</a>
6666
</td>
6767
<td style="text-align:center">
68-
<a href='{{- relref . "/develop/clients/go/vecsearch" -}}'>&#9989;</a>
68+
<a href='{{- relref . "/develop/clients/go/vecsearch" -}}'>See Go examples</a>
6969
</td>
7070
</tr>
7171
<tr>
7272
<td><a href='{{- relref . "/develop/clients/php" -}}'>PHP</a></td>
7373
<td style="text-align:center">
74-
<a href='{{- relref . "/develop/clients/php/connect" -}}'>&#9989;</a>
74+
<a href='{{- relref . "/develop/clients/php/connect" -}}'>See PHP examples</a>
7575
</td>
7676
<td style="text-align:center">
77-
<a href='{{- relref . "/develop/clients/php/queryjson" -}}'>&#9989;</a>
77+
<a href='{{- relref . "/develop/clients/php/queryjson" -}}'>See PHP examples</a>
7878
</td>
7979
<td style="text-align:center">
80-
<a href='{{- relref . "/develop/clients/php/vecsearch" -}}'>&#9989;</a>
80+
<a href='{{- relref . "/develop/clients/php/vecsearch" -}}'>See PHP examples</a>
8181
</td>
8282
</tr>
8383
<tr>

0 commit comments

Comments
 (0)