mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-01-22 13:48:36 +01:00
c049484e4c
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
20 lines
635 B
JSON
20 lines
635 B
JSON
---
|
|
layout: none
|
|
---
|
|
[
|
|
{% for post in site.pages %}
|
|
{%- capture page_ext -%}{{ post.name | slice: -3, 3 }}{%- endcapture -%}
|
|
{%- if page_ext == ".md" -%}
|
|
{
|
|
"title" : "{{ post.title | strip_html | escape }}",
|
|
"name" : "{{ post.name | strip_html | escape }}",
|
|
"url" : "{{ site.baseurl }}{{ post.url }}",
|
|
"category" : "{{ post.category }}",
|
|
"tags" : "{{ post.tags | join: ', ' }}",
|
|
"date" : "{{ post.date }}",
|
|
"content" : "{{ post.content | markdownify | strip_html | downcase | slugify | replace: "-", " " | escape }}"
|
|
} {%- unless forloop.last -%},{%- endunless -%}
|
|
{%- endif -%}
|
|
{% endfor %}
|
|
]
|