-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (76 loc) · 2.91 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
layout: page
header: expanded
---
<div id="home">
<!-- Section: Tabs -->
<section id="tabs">
<div class="wrapper">
<a href="{{'about' | absolute_url}}">
<span class="material-icons">auto_stories</span>
<h1>About</h1>
<p>Read about the project and our goals for democratizing AI.</p>
</a>
<a href="{{'consortium' | absolute_url}}">
<span class="material-icons">diversity_1</span>
<h1>Consortium </h1>
<p>View the partners and community members involved in this project.</p>
</a>
<a href="{{'contact' | absolute_url}}">
<span class="material-icons">email</span>
<h1>Contact</h1>
<p>Get in touch with us with any questions or queries, we'd love to help.</p>
</a>
</div>
</section>
<!-- Section: Updates -->
<section id="updates">
<div class="wrapper">
<a class="side-title" href="{{'updates' | absolute_url}}">
<span class="material-icons">newspaper</span> Updates
</a>
<!-- Updates -->
<div class="update-panels">
{% assign sorted_updates = site.updates | sort: 'date' | reverse %}
{%- for update in sorted_updates limit:3 -%}
<a href="{{update.url | absolute_url}}">
<div>
<span class="material-icons">event</span> {{update.date | date: "%m/%d/%Y" }}
</div>
<div>
<h1>{{update.title}}</h1>
<h2>{{update.content | strip_html | truncatewords:50}}</h2>
</div>
<div>
{%- for tag in update.tags -%}
<div class="update tag {{tag | slugify}}">{{tag | capitalize}}</div>
{%- endfor -%}
</div>
</a>
{%- endfor -%}
{% if site.updates.size < 3 %}
{% assign short_fall = 3 | minus: site.updates.size %}
{% for num in (1..short_fall) %}
<div class="placeholder">
<div>
Coming Soon!
</div>
</div>
{% endfor %}
{% endif %}
</div>
</div>
</section>
<!-- Section: Home -->
<section id="partners">
<div class="wrapper">
<a class="side-title" href="{{'consortium' | absolute_url}}">
<span class="material-icons">diversity_1</span> Consortium
</a>
<!-- Consortium -->
<div class="partners">
{%- include _includes/consortium/members.html -%}
</div>
</div>
</section>
</div>