Magento – Luma theme home page content not showing

luma-thememagento-2.1

I have downloaded Magento CE 2.1.8 and installed it on a local system, now when I access the home url Luma theme shows a page like this:

enter image description here

Instead if something like this:

enter image description here

Best Answer

Magento provides two types of source

1) Full Release (ZIP with no sample data)

2) Full Release with Sample Data (ZIP with sample data)

Make sure which source you have downloaded

However you can deploy sample data via command

php bin/magento sampledata:deploy

Make sure you clean your cache after process

php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
php bin/magento indexer:reindex
php bin/magento cache:clean
rm -rf <your magento root dir>/var/*
find . -type d -exec chmod 770 {} \; && find . -type f -exec chmod 660 {} \; && chmod u+x bin/magento