Sha256: 35f5bd978f4972faf4ff98813a8fcb9a77614c11734377351686fba858eebfe1
Contents?: true
Size: 702 Bytes
Versions: 17
Compression:
Stored size: 702 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
17 entries across 17 versions & 1 rubygems