mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-12 23:40:45 -07:00
Merge pull request #106 from gnowoel/fix_example_servlet
fix example servlet
This commit is contained in:
@@ -23,11 +23,7 @@ class Servlet < LiquidServlet
|
|||||||
end
|
end
|
||||||
|
|
||||||
def products
|
def products
|
||||||
{ 'products' => products_list, 'section' => 'Snowboards', 'cool_products' => true}
|
{ 'products' => products_list, 'description' => description, 'section' => 'Snowboards', 'cool_products' => true}
|
||||||
end
|
|
||||||
|
|
||||||
def description
|
|
||||||
"List of Products ~ This is a list of products with price and description."
|
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@@ -38,4 +34,8 @@ class Servlet < LiquidServlet
|
|||||||
{'name' => 'Arbor Diamond', 'price' => 59900, 'description' => 'the *arbor diamond* is a made up product because im obsessed with arbor and have no creativity'}]
|
{'name' => 'Arbor Diamond', 'price' => 59900, 'description' => 'the *arbor diamond* is a made up product because im obsessed with arbor and have no creativity'}]
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def description
|
||||||
|
"List of Products ~ This is a list of products with price and description."
|
||||||
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user