forked from SerTalithaT/vidding-photosensitivity-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrisks.html
More file actions
26 lines (22 loc) · 695 Bytes
/
Copy pathrisks.html
File metadata and controls
26 lines (22 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: default
title: Risk Categories
---
<h1>Photosensitive Risk Categories</h1>
<p>Remember: Your source can have these naturally! Your video can be a risk without adding any effects!</P>
<details class="toc" open><summary>Table of Contents</summary>
<ol>
{% for risk in site.risks %}
<li><a href="#{{ risk.shortcode }}">{{ risk.name }}</a></li>
{% endfor %}
</ol>
</details>
<div class="collection">
{% for risk in site.risks %}
<div class="anchor" id="{{ risk.shortcode }}"> </div><br /><br />
<div class="item">
<h1>{{ risk.name }} (<strong>{{ risk.shortcode }}</strong>)</h1>
{{ risk.content | markdownify }}
</div>
{% endfor %}
</div>