-
Notifications
You must be signed in to change notification settings - Fork 2
/
ggrc.html
46 lines (34 loc) · 1.75 KB
/
ggrc.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
layout: info
title: Resource Center
permalink: /ggrc/
---
<h2> About GGRC</h2>
The Golden Gate Resource Center(GGRC) is an initiative started in 2018 to provide event guides for the community, free of cost. GGRC is currently a work in progress; more event guides will be added soon. If you are interested in contributing to the GGRC or have any suggestions for content you would like to see, feel free to email us at [email protected]
<br>
<h3>Past tests</h3>
<a href="https://drive.google.com/drive/folders/1dh3T45cSCr6dkTllG-z05Sncfdtypy-t?usp=sharing" class="btn btn-mid" target="_blank">2022</a>
<a href="https://drive.google.com/drive/folders/14inBI0VlhCqHEKUmLUQ6yHXLX1A15OC6?usp=sharing" class="btn btn-mid" target="_blank">2021</a>
<a href="https://drive.google.com/open?id=1M1Bhjypo-78cqFMswVmYfeXjQBBZw5Dh" class="btn btn-mid" target="_blank">2020</a>
<a href="https://drive.google.com/open?id=13TAiWgzuwMoPwjBq3Qrd5_19HK7j3kj_" class="btn btn-mid" target="_blank">2019</a>
<a href="https://drive.google.com/drive/folders/1gFxSjHTf0-tzxTiXCdAfA-cDNCk-mIFt" class="btn btn-mid" target="_blank">2018</a>
<a href="https://drive.google.com/drive/folders/1foDWPJXZMzVVxtbR4rqo-UjGNJ5JGjeN" class="btn btn-mid" target="_blank">2017</a>
<br>
<div class = "tiles">
{% for event in site.ggrc %}
{% if event.version %}
<a class="btn btn-md btn-mid" style="background-color:#2e66b6;color: #ffffff;" href="./{{event.docname}}">
<p>{{event.title}}</p>
{% if event.type == "study" %}
<i class = "material-icons"> chrome_reader_mode </i>
{% endif %}
{% if event.type == "lab" %}
<i class = "material-icons"> timeline </i>
{% endif %}
{% if event.type == "build" %}
<i class = "material-icons"> build </i>
{% endif %}
</a>
{% endif %}
{% endfor %}
</div>