forked from 2factorauth/twofactorauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
data.json
21 lines (21 loc) · 1.22 KB
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
---
{
{% for section in site.data.main.sections %}
{% assign section_file = site.data[section.id] %}
"{{ section.title }}": {
{% for website in section_file.websites %}
"{{ website.name }}": {
"tfa": {% if website.tfa %}true{% else %}false{% endif %},
"url": "{{ website.url }}",
"img": "/img/{{ section.id }}/{{ website.img }}",
"twitter": "{{ website.twitter }}",
"sms": {% if website.sms %}true{% else %}false{% endif %},
"software": {% if website.software %}true{% else %}false{% endif %},
"phone": {% if website.phone %}true{% else %}false{% endif %},
"hardware": {% if website.hardware %}true{% else %}false{% endif %}
}{% if forloop.last != true %},{% endif %}
{% endfor %}
}{% if forloop.last != true %},{% endif %}
{% endfor %}
}