To Projects

IT 232 -- Project 1

Goal:

Relevant Examples:

Specifications:

  1. Create three views. Each view should show an image and the description of that image.
  2. Your images and their descriptions should be related.
  3. Use a layout page that uses absolute positioning to show the navigation links and the name of the image in the page heading. When displayed within the layout page, each view should be displayed something like this:
                              Name of Image       
                      +-------------------------+
    Link to Image1    |                         |                         
    Link to Image2    |          Image          |                         
    Link to Image3    |                         |
                      |                         |
                      +-------------------------+
                      
                      Description of image.                         
    
  4. A hyperlink to an image page should only be displayed as an underlined hyperlink if it does not refer to the current page. Use the Rails link_to_unless_current helper method as shown in the Greeter Example.
  5. Also create a border for the image and set the margin and padding properties to get the desired layout.
  6. Don't forget to supply a title for each view. The easiest way to do this is to set the title in the controller as in the Greeter Example.

Rails Tags

Grading Breakdown: