-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (71 loc) · 2.98 KB
/
index.html
File metadata and controls
76 lines (71 loc) · 2.98 KB
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
---
layout: superhero
stylesheet: homepage
content_include: homepage_hero.html
superhero_photo_url: https://www.flickr.com/photos/29233640@N07/5724686543
superhero_photograher: Robert Couse-Baker
---
<main>
<section class="HeroSection">
<header id="our_mission" class="HeroSection--header">Our Mission</header>
<p class="HeroSection--content">
{{ site.description }}
</p>
<p class="HeroSection--content">
<a href="/our_mission" class="Button">Learn more</a>
</p>
</section>
<section class="HeroSection">
<header id="members" class="HeroSection--header">Member Organizations</header>
<p class="HeroSection--content">
We are dedicated to strengthening the technology community in Sacramento
by providing quality events and experiences to everyone. Check out some
of the fantastic organizations that have joined our ranks to provide you,
and all of Sacramento, with the best resources our area needs.
</p>
{% assign member_orgs = site.data.member_organizations %}
<p class="flex flex--justifyContent-spaceAround">
{% for member_org in member_orgs | limit: 5 %}
<a class="MemberOrg--listItem" href="/our_community#{{ member_org.name | slugify }}" target="meetup">
<img class="MemberOrg--listItemImg" src="{{ member_org.avatar }}" width="100" height="100"/>
{{ member_org.name }}
</a>
{% endfor %}
</p>
<p class="HeroSection--content">
<a href="/our_community" class="Button">See more</a>
</p>
</section>
<section class="HeroSection">
<header id="join_us" class="HeroSection--header">Join our Family</header>
<p class="HeroSection--content">
{{ site.title }} is committed to providing the Sacramento Tech Community with
events of outstanding quality. Joining our organization allows you to
take advantage of the numerous resources that we provide. Joining is
100% free and easy to do!
</p>
<p class="HeroSection--content">
<a href="/our_community/join_us" class="Button">Join Us!</a>
</p>
</section>
<section class="HeroSection">
<header id="sponsors" class="HeroSection--header">Sponsors</header>
<p class="HeroSection--content">
{{ site.title }} would not be possible without the generous support of our sponsors.
Thanks go out to all of our sponsors that, past and future, that have
donated their time or resources into building Sacramento's tech community!
</p>
{% assign sponsors = site.data.sponsors %}
<p class="flex flex--justifyContent-spaceAround">
{% for sponsor in sponsors %}
<a class="MemberOrg--listItem" href="/our_community#{{ sponsor.name | slugify }}" target="sponsor">
<img class="MemberOrg--listItemImg" src="{{ sponsor.logo }}" width="100" height="100"/>
{{ sponsor.name }}
</a>
{% endfor %}
</p>
<p class="HeroSection--content">
<a href="/our_community/sponsors" class="Button">See more</a>
</p>
</section>
</main>