Skip to content

Instantly share code, notes, and snippets.

@learncfinaweek
Created November 20, 2012 21:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save learncfinaweek/4121240 to your computer and use it in GitHub Desktop.
Save learncfinaweek/4121240 to your computer and use it in GitHub Desktop.
Code Reuse - Hands On 13

In this hands on, we are going to separate out the header and footer and put the code into separate files that will be included.

Tags Used: <cfinclude>, <cfparam>, <cfif>, <cfset>

  1. Create a folder called includes in the www folder.
  2. Create a new file in /www/includes/ called header.cfm.
  3. Create a new file in /www/includes/ called footer.cfm.
  4. Open up the /www/about.cfm file in your code editor.
  5. Copy all lines from <!DOCTYPE, on line 2, down to and including the <!--header end --> line, on line 76.
  6. Paste these lines of code into the header.cfm file.
  7. Delete these lines from /www/about.cfm.
  8. Copy all lines from below the about end comment.
  9. Paste these lines of code into footer.cfm.
  10. Delete these lines from /www/about.cfm.
  11. In a browser, navigate to the /www/about.cfm page. Notice that it no longer looks correct.
  12. Go back to the /www/about.cfm file in your code editor.
  13. At the top of the file, just below your <cffunction> tag block on or around line 11 and create a new tag called <cfinclude> with the following attribute:
    • template: includes/header.cfm
  14. Go to the bottom of the file and create a <cfinclude> tag with the following attribute:
    • template: includes/footer.cfm
  15. Go back to your browser and refresh the about.cfm file. You should now see the page as it used to be.
  16. Open up the /www/includes/header.cfm file in your code editor.
  17. At the top of the page, create a <cfparam> tag with the following attributes:
    • name: section
    • default: home
  18. Locate the link to the homepage in the navigation, which should be on or around line 51.
  19. Inside the <li> tag, add the following line of code:
    <cfif section eq "home">id="selected"</cfif>
    
  20. Do the same for the other links in the navigation, but instead of checking if section eq "home", replace home with the value of the <li> class.
  21. Once completed your code should look similar to this:
    <ul class="arrowunderline" id="nav">
    	<li class="home" <cfif section eq "home">id="selected"</cfif>><a href="index.cfm">Home</a></li>
    	<li class="about" <cfif section eq "about">id="selected"</cfif>><a href="about.cfm">About</a></li>
    	<li class="resume" <cfif section eq "resume">id="selected"</cfif>><a href="resume.cfm">Resume</a></li>
    	<li class="blog" <cfif section eq "blog">id="selected"</cfif>><a href="blog.cfm">Blog</a></li>
    	<li class="portfolio" <cfif section eq "portfolio">id="selected"</cfif>><a href="portfolio.cfm">Portfolio</a></li>
    	<li class="contact" <cfif section eq "contact">id="selected"</cfif>><a href="contact.cfm">Contact</a></li>	
    </ul>
    
  22. Refresh the /www/about.cfm page in your browser. You will notice that the navigation is currently highlighting the 'Home' navigation item rather than the 'About' navigation item. This is because we have not set the Section variable on the about.cfm page.
  23. Open up the /www/about.cfm in your code editor and locate the <cfinclude> tag which includes the header. This should be on or around line 12.
  24. Before the <cfinclude> tag, create a <cfset> tag and set the value of About to a variable called Section. Your code should look similar to this:
    <cfset section = "About" />
    
  25. In your browser, refresh the /www/about.cfm page and notice that the 'About' navigation item is now highlighted.

Home Work

Update all other pages in the site so that they use the included header and footer rather than the inline code.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment