# Home Template
Galerie offers two ways to present the first section of the home page: Featured Articles Slider and Hero Section.
# Featured Articles Slider
The first section of the home page is displayed this way by default. The first slide shows the title and description of the publication as well as the cover image.
# Change Featured Articles Limit
If you mark some articles as featured they will appear individually on the following slides, the slider will show up to 5 featured articles.
If you wish to change the featured articles limit follow these steps:
Unzip the theme folder.
Open the file
partials/home-slider.hbs
with a text/code editor and look for the following line of code:
limit="5" as |featured|
Replace the number
5
with the number yo prefer and save your changes.Zip the theme folder and upload it again.
# Restore Featured Articles Slider
If you decided to use the Hero Section instead of the Slider and now you want to return it to the way it was, you can choose this section in the theme design settings as shown below:
If you are not using Ghost 4.20.0 or later and Galerie 1.1.0 or later you can do the following instead:
Unzip the theme folder.
Open the file
index.hbs
with a text/code editor and look for the following line of code:
{{> home-hero}}
- Replace that line with the following code:
{{> home-slider}}
Save your changes.
Zip the theme folder and upload it again.
# Hero Section
The Hero Section is a simpler representation that does not show featured articles, it simply shows a single section with the title, description and cover image of the publication.
# Activate Hero Section
If you do not want to show featured articles in the first section of the home page you can use the Hero Section instead, you can choose this section in the theme design settings as shown bellow:
If you are not using Ghost 4.20.0 or later and Galerie 1.1.0 or later you can do the following instead:
Unzip the theme folder.
Open the file
index.hbs
with a text/code editor and look for the following line of code:
{{> home-slider}}
- Replace that line with the following code:
{{> home-hero}}
Save your changes.
Zip the theme folder and upload it again.