mirror of
https://github.com/github/choosealicense.com
synced 2024-12-22 12:50:24 +01:00
Merge pull request #207 from github/jsonify
Use jsonify to build license json
This commit is contained in:
commit
5b26f56796
@ -5,24 +5,4 @@ comment: \
|
|||||||
increment an index to see if we're on the true last iteration.
|
increment an index to see if we're on the true last iteration.
|
||||||
---
|
---
|
||||||
{% assign count = 0 %}{% for page in site.pages %}{% if page.layout == "license" %}{% assign count = count | plus: 1 %}{% endif %}{% endfor %}{% assign i = 0 %}
|
{% assign count = 0 %}{% for page in site.pages %}{% if page.layout == "license" %}{% assign count = count | plus: 1 %}{% endif %}{% endfor %}{% assign i = 0 %}
|
||||||
[
|
[{% for page in site.pages %}{% if page.layout == "license" %}{{ page | jsonify }}{% assign i = i | plus: 1 %}{% if i < count %},{% endif %}{% endif %}{% endfor %}]
|
||||||
{% for page in site.pages %}{% if page.layout == "license" %}
|
|
||||||
{
|
|
||||||
"title": "{{ page.title }}",
|
|
||||||
"permalink": "{{ page.permalink }}",
|
|
||||||
"featured": {% if page.featured %}true{% else %}false{% endif %},
|
|
||||||
"description": "{{ page.description | replace: '"', '\"' }}",
|
|
||||||
"how": "{{ page.how | replace: '"', '\"' }}",
|
|
||||||
"rules": {
|
|
||||||
{% for category in site.rules %}
|
|
||||||
{% assign cat = category[0] %}
|
|
||||||
"{{ cat }}": [
|
|
||||||
{% for rule in page[cat] %}
|
|
||||||
"{{ rule }}"{% if forloop.rindex0 > 0 %},{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
]{% if forloop.rindex0 > 0 %},{% endif %}
|
|
||||||
{% endfor %}
|
|
||||||
}{% assign i = i | plus: 1 %}
|
|
||||||
}{% if i < count %},{% endif %}
|
|
||||||
{% endif %}{% endfor %}
|
|
||||||
]
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user