mirror of
https://github.com/openhwgroup/cva6.git
synced 2025-04-19 19:57:11 -04:00
22 lines
520 B
JSON
22 lines
520 B
JSON
---
|
|
---
|
|
[
|
|
{% for section in site.data.docs %}
|
|
{% for item in section.docs %}
|
|
{% assign item_url = item | prepend:"/docs/" | append:"/" %}
|
|
{% assign p = site.docs | where:"url", item_url | first %}
|
|
{
|
|
"title": "{{ p.title }}",
|
|
"url": "{{ p.url | prepend: site.baseurl }}"
|
|
|
|
},
|
|
{% endfor %}
|
|
{% endfor %}
|
|
|
|
{% for post in site.posts %}
|
|
{
|
|
"title": "{{ post.title | escape }}",
|
|
"url": "{{ post.url | prepend: site.baseurl }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
]
|