Liquid is a templating engine for creating web pages.
0
votes
0answers
5 views
How can I determine the line num and char position of my tag in a liquid template?
I have a custom liquid tag. Inside of this tag, I'd like to know the specific line number and character position of the tag itself, in the original template file.
I see that a tag has access to the ...
0
votes
0answers
10 views
Use a different liquid tag instead of %
Right now for liquid, I am writing:
{{ my_var }}
I would like to write:
= my_var
Has anyone seen a solution for this? Else fork/change the template parser?
Thanks.
1
vote
1answer
30 views
Github pages: How to extend base layout?
In my github pages directory, I have a folder called _layout in which I have a template file called base.html.
It contains nothing more than:
<p>Test 1</p>
{{ content }}
<p>Test ...
0
votes
1answer
39 views
Explain structure of site.categories
Jekyll supplies a site.categories variable that is accessible to liquid templates. In my site I currently have two categories with one post each. From looking at the jekyll bootstrap categories.html ...
0
votes
1answer
20 views
Jekyll bootstrap use fixed categories list
Categories are "lightweight" in Jekyll, that is, rather than being fixed in a config file or list somewhere, they are created from scraping the YAML front matter from all the posts (and pages?).
I ...
0
votes
1answer
22 views
What does capturing a liquid variable then assigning to nil do?
Jekyll bootstrap includes the file _includes/JB/setup:
{% capture jbcache %}
<!--
- Dynamically set liquid variables for working with URLs/paths
-->
{% if site.JB.setup.provider == ...
1
vote
0answers
33 views
relative liquid links fail on github pages
i'm fairly new to jekyll and github in general, so i apologize for my dumb mistakes, but i'm trying to rebuild my personal site through GitHub pages, and will eventually use a custom domain name. i've ...
0
votes
1answer
43 views
How do I use markdownify in Jekyll to show an excerpt on the index
I'm looking to show a short excerpt of text from a longer post or page on the index page. I was going to use a custom variable in the Front Matter and grab that, but then I saw the filter for .excerpt
...
0
votes
0answers
17 views
Shopify liquid - wish list not working
I have implemented this: https://github.com/zakhardage/Shopify-Wish-List
To get a wish list on my shopify website www.spoiltpets.com
Go to any product and click add to wish list (once logged in)
...
0
votes
0answers
19 views
Extracting data out of a liquid tempalte
I am investigating using the liquid template language allow users to customize views on my website. However I need a way to allow my users to define settings that are then passed back to the engine.
...
2
votes
1answer
67 views
liquid form layout with display:inline-block
I have got a form with label container and value container in one row and i have made a fiddle to illustrate:
http://jsfiddle.net/eEvEN/3/
The layout is fixed and i never want the value container to ...
1
vote
1answer
47 views
Ignore a specific tag in Jekyll
I am building a site using Jekyll and I have something that looks like {{ }} (a liquid tag) in my code. I want this to end up in the output html after Jekyll finishes generating the site, but Jekyll ...
0
votes
1answer
25 views
How to assign multiple customer tags in Shopify?
I am trying to assign multiple custom tags to a customer who registers for my store in Shopify.
Here is what I have so far but it assigns over the first tag with the second one, I need to find a way ...
0
votes
0answers
48 views
Implemeting SPH (Smoothed particle hydrodynamics) with physics engine in 2D
Im quite newbie in this topic. Even after reading many docs, wiki pages and atricles, I still don't understand some things. I get the general idea, but not the implementation details.
What forces ...
0
votes
2answers
42 views
Get next and previous elements out of an array in liquid
Short version:
I want to add 1 to a number in a liquid template and use the result as an array index.
{% capture plus_one %}{{ 0 | plus: 1 }}{% endcapture %}
<div>-Value of plus_one: ...
0
votes
2answers
47 views
forloop.index as a condition in an if-statement in shopify
I'm trying to do something very simple. I wrote:
{% for product in collection.products %}
{{ if forloop.index = 1 }}
Hello World!
{{ endif }}
{% endfor %}
Problem:
"Hello World!" ...
0
votes
0answers
29 views
Render a template in layout with liquid and rails3
Hi I'm building an app where I let users to edit their template and layout. I store the templates in the database.
I have a model which is called Theme and Template, where Theme has_many templates.
...
0
votes
0answers
32 views
Check for nil Nil:Class in liquid
How to check for nil Nil:class in abc.liquid template . for eg:
{% for item in cart.items %}
{% if cart.name.nil? %}
<div>
N.A.
</div>
{% endif %}
<tr>
...
0
votes
1answer
44 views
Rails3 and Liquid initialize error
Hi I have a Rails 3 app with the gem Liquid for templates. The problem is that I get this error with my custom tag. I will be using the example of the wiki.
In my /lib/ I created a random.rb for my ...
1
vote
0answers
30 views
Related Products Shopify Liquid
I'm trying to determine the correct Shopify Liquid syntax for outputting a list of products that match the same tag as the current product.
This is to appear in a "Related Products" box on the ...
1
vote
1answer
36 views
How can I access an array of objects from GData JSON in Ruby?
I am trying to write a Jekyll extension that will embed comments from a Blogger blog.
I am able to fetch the comments feed as JSON, and process it enough to pull out the total number of comments. ...
1
vote
1answer
87 views
How to url encode in jekyll liquid?
I have problem that categories are not url encoded when I use german words with Umlauts (e.g. ä, ü). I tried the cgi_escape that Liquid seems to offer, but success with the following code:
...
0
votes
2answers
44 views
My Website does not display properly on resolutions above 1024
I recently developed a website that looks good on 1024 resolution but gets messed up on larger resolutions. Here are the links to the files you will probably need to review: CSS for the site, CSS for ...
0
votes
0answers
10 views
liquid templating - stylesheet_tag medi print
<html>
<head>
<meta charset="utf-8">
<title>title</title>
{{ "print.css" | asset_url | stylesheet_tag }}
<!-- i want above code ...
0
votes
2answers
71 views
Evenly spread divs with maximum width [closed]
I want my site to be viewed best on all kinds of resolutions. So now I want the following for my multiple (equally sized) divs:
My divs should have a max-width of 300px.
If parent is < 300px, the ...
1
vote
1answer
54 views
Change the innerHTML of EVERY element with specified id
I am trying to change the innerHTML value of every element with id 'filename', but only the first one gets updated.
My problem is that only the first element with id 'filename' is updated.
HTML code ...
0
votes
1answer
57 views
Jekyll IF statement for 'IF index (home) and NOT paged'?
As you may know Jekyll uses Liquid tags, and the Liquid templating engine has support for If / Else / Unless statements. Does anyone know how to show a specific content only on the 'homepage` (& ...
0
votes
1answer
52 views
Assigning a variable within a statement in liquid
Is there a way to have a variable within a statement in liquid so that something like the following:
{% assign somevar = 'about-us' %}
{{ pages.somevar.content }}
would result in the same output as ...
0
votes
1answer
70 views
Evaluate a liquid “if” statement based on value of liquid filter
I have a custom Liquid filter I use in a Jekyll site,
{{ page.url | git_modified }}
Which generates the modification date from the git log (plugin code here).
Often I may add the additional ...
0
votes
1answer
40 views
Do % in CSS flow into each other?
I'm trying to turn my fixed site into a fluid site and I have a quick question on how %'s work.
<div class=wrap>
<div class=box>
<Div class=text>
<div ...
0
votes
1answer
61 views
How to fix: Liquid Exception: Tag '{%' was not properly terminated with regexp: /\%\}/
I'm getting this output from my Jekyll website generator
Liquid Exception: Tag '{%' was not properly terminated with regexp: /\%\}/
What's going on?
0
votes
0answers
105 views
Generating Jekyll Pages from Liquid and Markdown instead of HTML
I'm using a slightly modified version of the example generator from Jekyll's plugins section of their docs (https://github.com/mojombo/jekyll/wiki/Plugins#generators) and I'm curious if there is any ...
0
votes
1answer
55 views
How to keep two fixed width div's equally spaced in a liquid layout
I have a liquid layout page that has a max and min width of the body set (1260px and 960px, respectively). I have a left-hand sidebar that takes up the left 25% and the content which takes up the ...
2
votes
2answers
50 views
Is it possible to have more than one naming conventions of github posts?
Is it possible to have more than one naming conventions of github posts?
For example, in the _post directory, I would like to have files like these:
2013-03-18-xyz.markdown
abc.markdown ...
1
vote
1answer
239 views
Custom fields for Shopify User Registration Form
I can't find any documentation on how to add custom fields for the user registration forum so I tried something but didn't work:
<div class="single-full-width customer">
<div ...
0
votes
0answers
9 views
A liquid extension for inserting placeholder / filler content?
Wondering if anyone has had the idea to create a liquid extension that could produce filler content?
It seems to me the advantage of building filler/lorem-ipsum/placeholder functions in to the ...
0
votes
0answers
167 views
Liquid Slider - animated, dynamic navigation
I am using this liquid slider by Kevin Batdorf and would like to customise the navigation to create a sort of horizontal wheel. My work in progress is here, it shows both the headings and the ...
0
votes
1answer
130 views
GitHub Pages won't render Jekyll include
I have some liquid markup in my _includes/ that renders fine on my machine, but when I push to gh-pages only the containing div renders. It is supposed to generate the navigation for my site, grouped ...
1
vote
2answers
73 views
How do I make 2 or more horizontal divs stack into a vertical div when the user shrinks the browser window?
I have 2 divs on same row, each with a width of 50% and a float: left. I would like them to stack one on top of the other if the user is viewing the page from a smart-phone. Right now, the divs remain ...
0
votes
1answer
119 views
Shopify: Pass a Search Query String to Landing Page Search Function?
I'm currently managing a Google AdWords account for a cookie cutter company and have dreamed up an idea to get the most efficient conversions out of our campaign landing pages, but it will take some ...
0
votes
1answer
160 views
As3 3D - Ink drop spreading in water
I'm researching the following problem:
Let's say I have a glass of some fluid (water for example). The fluid is completely transparent and I don't have to render it at all.
However a ink drop is ...
-1
votes
1answer
48 views
Transaction count for single product using shopify api [closed]
I am using Shopify to build a group buying site so I want to be able to display a count of transactions for each product. As far as I know, there is no way to do this with liquid.
I can't seem to ...
1
vote
2answers
118 views
Nancy Module Unit Testing. Exception in unit test
Can't find reason why test isn't work. Has anybody known why it happen? Difference between these two tests is ony in views. In first it is ".html" page and in second it is ".liquid". In my project I ...
1
vote
1answer
51 views
How can i implement signup facility in shopify store?
I was found in shopify wiki docs but dont know how to implement signup.
0
votes
1answer
139 views
Can the Liquid Ruby template engine deal with Rails forms?
I've been searching for a template engine to allow users to create lessons and exercises online easily. Seems like Liquid is the most popular for use in Rails. Can Liquid users easily create rails ...
0
votes
1answer
72 views
How to create an image_tag filter for the rails liquid GEM
I'm trying to write a CMS type application and want to allow users to embed images in their liquid page template using a format like {{ page.image_url | my_img_tag }}.
The helper module is just:
...
0
votes
1answer
35 views
Show a collection of values in jekyll
Is it possible to have a collection of values in jekyll and then format them as table?
I tried something like this in my .md file:
---
layout: tutorial
title: Jekyll
reqs:
- name: names here
...
0
votes
1answer
74 views
How can I show a files modification date with Jekyll?
I know that I can specify a variable date in the YAML frontmatter of a file and access its value with {{ page.date }}. This is cumbersome since one easily forgets to change the date when a file is ...
0
votes
1answer
75 views
jekyll/liquid does not parse key/value dicts in page preamble on github pages
I have a file test.md:
---
layout: test
item: {"label":"value"}
---
This text should not appear
and a corresponding file _layouts/test.html:
<!DOCTYPE html>
<html>
<body>
...
0
votes
0answers
76 views
add metadata to liquid templates using jekyll plugin
I am new to Jekyll. I have a post with the following yml front matter:
---
layout: images-grid
title: Grid Sample
image: "/imgs/image1.jpg"
---
I would like to create .rb plugin that identifies all ...



