-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (43 loc) · 1.39 KB
/
index.html
File metadata and controls
46 lines (43 loc) · 1.39 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
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
---
<div class="content">
<div class="challenge_guide">
<a class="card_module" target="_blank" href="https://www.eventbrite.com/e/d3-react-workshop-tickets-109745104562">
<div class="card_image">
<img
src="/img/challenge_guide_img.png"
class="fade-in loaded"
data-visible="true"
/>
</div>
<div class="card_information">
<h3 class="section-title">JOIN OUR NEXT EVENT:</h3>
<p class="description"><strong>D3 + REACT WORKSHOP</strong></p>
<div class="card-info-underline"></div>
</div>
</a>
</div>
<div class="PastChallenge">
<h2 class="PastChallenge__header section-title">
Past Challenges & Other News
</h2>
<ul class="PastChallenge__list">
{% for blog in site.posts and counter < '3' %}
<li class="PastChallenge__item">
<div class="PastChallenge__item-container">
<img class="PastChallenge__item-featImg" src="{{blog.featureImg}}" />
<a href="{{ blog.url }}">
<h3 class="PastChallenge__item-title">
{{blog.title}}
</h3>
<div class="underline"></div>
</a>
</div>
</li>
{% endfor %}
</ul>
</div>
</div>