--- title: "Liquid tags: section" description: Renders a [section](/themes/architecture/sections). api_name: liquid source_url: html: https://shopify.dev/docs/api/liquid/tags/section md: https://shopify.dev/docs/api/liquid/tags/section.md --- # section Renders a [section](https://shopify.dev/themes/architecture/sections). Rendering a section with the `section` tag renders a section statically. To learn more about sections and how to use them in your theme, refer to [Render a section](https://shopify.dev/themes/architecture/sections#render-a-section). ## Syntax ```oobleckTag {% section 'name' %} ``` name The name of the section file you want to render. ```liquid {% section 'header' %} ``` ##### Code ``` {% section 'header' %} ``` ##### Data ``` { "cart": { "item_count": 2 }, "request": { "origin": "https://polinas-potent-potions.myshopify.com", "page_type": "index" }, "routes": { "account_url": "/account", "cart_url": "/cart", "root_url": "/", "search_url": "/search" }, "settings": { "accent_icons": "text", "cart_type": "notification", "inputs_shadow_vertical_offset": 4, "predictive_search_enabled": true, "social_facebook_link": "", "social_instagram_link": "", "social_pinterest_link": "", "social_snapchat_link": "", "social_tiktok_link": "", "social_tumblr_link": "", "social_twitter_link": "", "social_vimeo_link": "", "social_youtube_link": "" }, "shop": { "customer_accounts_enabled": true, "name": "Polina's Potent Potions" } } ``` ## Output ```html