Skip to content
Closed
Show file tree
Hide file tree
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: 6 additions & 0 deletions content/develop/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
---
title: Develop with Redis
description: Learn how to develop with Redis
hideListLinks: true
linkTitle: Develop
---

| Try these commands | Redis Console (redis-cli) |
|:----- |----- |
| |
{{% redis-cli %}}SET foo "Hello"{{% /redis-cli %}} |
2 changes: 1 addition & 1 deletion layouts/develop/list.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{{ define "main" }}
<main class="docs w-full max-w-[1920px] mx-auto px-5 flex flex-col md:flex-row overflow-hidden">
{{ partial "docs-nav.html" . }}
<div class="py-12 md:pl-4 xl:px-16 overflow-hidden">
<div class="w-full py-12 md:pl-4 xl:px-16 overflow-hidden">
{{ partial "breadcrumbs" . }}
<section class="prose w-full py-12 max-w-none">
<h1>
Expand Down
4 changes: 2 additions & 2 deletions layouts/develop/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
{{ define "main" }}
<main class="docs w-full max-w-[1920px] mx-auto px-5 flex flex-col md:flex-row overflow-hidden">
{{ partial "docs-nav.html" . }}
<div class="py-12 md:pl-4 xl:px-16 overflow-hidden">
<div class="w-full py-12 md:pl-4 xl:px-16 overflow-hidden">
{{ partial "breadcrumbs" . }}
<section class="prose w-full py-12">
<section class="prose w-full py-12 max-w-none">
<h1>
{{ .Title }}</h1>
{{ with .Params.description }}<p class="text-lg -mt-5 mb-10">{{ . | markdownify }}</p>{{ end }}
Expand Down