# Footer Simple

> Render a full-width footer with centered content.

Canonical HTML: https://press.varavel.com/docs/shortcodes/footer-simple/
Markdown: https://press.varavel.com/docs/shortcodes/footer-simple/index.md

`footer_simple` renders the standard landing footer with copyright text, optional links, and an optional GitHub icon.

## When to Use

Use it at the end of landing pages and simple marketing pages. Keep footer links minimal so the primary conversion path stays clear.

## Usage

```markdown
{{/* footer_simple(
container="lg",
links="Docs|/docs,GitHub|https://github.com/varavelio/varapress"
) */}}
```

## Live Example

{{ footer_simple(
container="md",
links="Docs|/docs,Shortcodes|/docs/shortcodes",
show_github="false"
) }}

## Parameters

| Parameter     | Description                                  |
| ------------- | -------------------------------------------- |
| `container`   | Inner content width for the footer.          |
| `copyright`   | Optional custom copyright text.              |
| `links`       | Comma-separated `label                       |
| `show_github` | Set to `false` to hide the GitHub icon link. |
| `class`       | Additional CSS classes on the footer.        |
