Giter Club home page Giter Club logo

dyn_meta's Introduction

DynMeta

Automate the lookup of page meta information based on the current request context. Meta information such as page titles and descriptions can be stored in a translations file rather than floating around in controllers or views.

Usage

Add DynMeta::Helper to your app:

# application_controller.rb
helper DynMeta::Helper

Set up your translations as follows:

en:
  meta:
    <meta key pluralized>:
      <controller>:
        <action>:
          <id>: "Some meta value"

For example:

en:
  meta:
    titles:
      users:
        new: "Create Your Account"
        edit: "Update Your Account"

You usually won't go down to the id level but occasionally it's useful:

en:
  meta:
    titles:
      pages:
        show:
          tos: "Terms of Service"
          pp: "Privacy Policy"
          about: "About My Site"

You can define catch-alls via the default key:

en:
  meta:
    titles:
      default: "My Super Site"
      users:
        default: "Manage Your Account"
        new: "Create Your Account"
        edit: "Update Your Account"

DynMeta provides one method meta. It's both a setter and a getter. Just use the meta method in your template:

<title><%= meta(:title) %></title>
<meta name="description" content="<%= meta(:description) %>" />

If you'd like to override meta content you can just pass a value to the meta method:

def show
  @user = User.find(params[:id])
  meta(:title, "#{@user.display_name} :: Profile")
end

You can also provide interpolations via the meta method rather than overriding entire locales:

def show
  @user = User.find(params[:id])
  meta(:title, :name => @user.display_name})
end

dyn_meta's People

Stargazers

 avatar  avatar

Watchers

 avatar

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.