---
title: Section
description: Section divider with logo and optional image
---

# Section Layout

The `section` layout is used to divide your presentation into distinct sections, similar to chapter breaks.

## Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `image` | string | - | Optional background/side image |
| `logo` | boolean | `true` | Show/hide logo |
| `titleLine` | boolean | `true` | Show/hide decorative underline |

## Basic Example

```markdown
---
layout: section
---

# Module 2
## Advanced Docker Concepts

Networking, volumes, and multi-stage builds
```

## With Image

```markdown
---
layout: section
image: /docker-logo.png
---

# Container Orchestration
## Scaling Your Applications
```
