forked from NFDI4Microbiota/nfdi4microbiota-knowledge-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.json
16 lines (16 loc) · 814 Bytes
/
search.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
layout: none
---
[
{% assign posts = site.Getting-Started | concat: site.Research-Data-Management | concat: site.RDM-Collect | concat: site.RDM-Plan | concat: site.RDM-Preserve | concat: site.RDM-Process | concat: site.RDM-Reuse | concat: site.RDM-Share | concat: site.Reproducible-Data-Analysis | concat: site.Experimental-Procedure-Standards-SOPs | concat: site.Resources | concat: site.How-We-Operate %}
{% for post in posts %}
{
"title" : "{{ post.title | escape }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | strip_html | strip_newlines }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]