Check out the image below to see where your files are located.
File Structure

The only place you need to familiarize yourself with is the user\pages\01.home folder. Inside that folder you will find a series of folders that start with an underscore character. _showcase, _donate, _shop etc. Each of these folders contains an .md file. These .md files contain two things: Structured data and written text using Markdown which sometimes needs bit of html code.

You will find different file names for the .md files. For the _showcase folder you will find showcase.md. The name of the file tells the CMS what template to use. In this example, the showcase template contains all the complicated code that makes the showcase function. The showcase is the large slide show at the top of the site.

The top of your .md file contains structured data called Front-matter. It is easy to make mistakes in here so be careful. Front-matter starts after the first three dashes --- and ends after the second set of three dashes ---.

---
title: Name of this section
menu: What will show in the menu
class: title-section
uniqueid: ass
bgclass: whitebg
---

The example shown above is the front matter of a simple page. The only thing you may want to change there is the title.

---
title: Showcase
menu: Home
class: title-section text-center
slides:
  - image: banner1.jpg
    heading: "Helping Breast Cancer Survivors since 2002"
    subheading: "And having a good time doing so."
  - image: banner2.jpg
    heading: "Ladies - please join us at our next event"
    subheading: "Snowmobile rides, four wheeler rides, golf tournaments"
  - image: banner3.jpg
    heading: "Assistance is available"
    subheading: "We provide assistance to women to help with the expenses of having breast cancer"
  - image: banner4.jpg
    heading: "Assistance is available"
    subheading: "We provide assistance to women to help with the expenses of having breast cancer"    
highlight:
  - header: Get assistance
    text: "The Snow Run for Fun Trust was established to help women who have been recently diagnosed with Breast Cancer. There are many unforseen expenses you may face, and which your health insurance program may not cover."
    icon: life-saver
    url: assistance
  - header: Make a donation
    text: "We rely on your generousity to help make the lives of breast cancer patients less challenging."
    icon: money
    url: donate
  - header: Fundraising events
    text: "The Snow Run was formed out of a passion for snowmobiling, and an equal passion for helping women who truly needed help in a time of need."
    icon: heart-o
    url: events
  - header: Merchandise
    text: "Shop for the cause... Support breast cancer survivors by purchasing items that we have had designed especially for our foundation."
    icon: shopping-cart
    url: shop 

---

# Offering financial assistance to breast cancer patients 
<span></span>

What you are seeing above is the contents of the actual showcase.md file. As you see, all the content that makes the top of the website work is contained in Front-matter. I know the words in there are not correct, so this is all you need to edit to fix it up. But BE CAREFUL if you put a space in the wrong place, the site will go down. Always test your changes before hitting the publish button.