Sha256: d6994501b2bcf8b2cca1f29daacdbfa045e826c572b4b01c6f31747e0ef16a99
Contents?: true
Size: 676 Bytes
Versions: 16
Compression:
Stored size: 676 Bytes
Contents
module Locomotive module Liquid module Tags class Blueprint < ::Liquid::Tag def render(context) %{ <link href="/stylesheets/admin/blueprint/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> <link href="/stylesheets/admin/blueprint/print.css" media="print" rel="stylesheet" type="text/css" /> <!--[if IE]> <link href="/stylesheets/admin/blueprint/ie.css" media="screen, projection" rel="stylesheet" type="text/css" /> <![endif]--> } end end ::Liquid::Template.register_tag('blueprint_stylesheets', Blueprint) end end end
Version data entries
16 entries across 16 versions & 1 rubygems