Giter Site home page Giter Site logo

lab-rails-layouts-views's Introduction

Layouts, Views, & Partials Lab

Introduction

Note: This can be a pair programming activity or done independently.

Now that we've seen how to play with views and partials, you'll now create an app that will use partials and redirects. Don't worry about styling, positioning, or models/databases, you're going to focus on how layouts, views, and partials work together with params, yield, and render to display the correct view to the user.

Exercise

Requirements

  • Create a rails app from scratch
  • This app should have a controller called "static" with an "index" method
  • The index method should render different templates based on the params:
    • When the param "page" is 1, the template rendered should be "app/views/static/index_1.html.erb"
    • When the param "page" is 2, the template rendered should be "app/views/static/index_2.html.erb"
    • Otherwise the template rendered should be "app/views/static/index.html.erb"
    • Test this with: /static/index?page=1 and /static/index?page=2
  • The controller should also have a method page that renders the template page inside a layout called page.html.erb
  • Both layouts should look different but they should render a partial called footer.html.erb at the bottom.

Bonus:

  • Scaffold a resource and try to render the collection on index using partial (take a look at the rails guide below)
  • Get creative and add multiple different partials on each different layout
  • Add some styles!

Deliverable

Additional Resources

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.