This repository was archived by the owner on Jan 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (80 loc) · 4.49 KB
/
index.html
File metadata and controls
94 lines (80 loc) · 4.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
# Landing page without special layout template
---
{% include head.html %}
<body class="home">
<!-- note: home has extra .home-background wrapper around first 2/3rds of content -->
<div class="home-background">
<div class="grid-container">
{% include header-menu.html %}
<!-- home specific content -->
<div class="grid-x grid-padding-x align-center-middle">
<div class="large-5 small-10 cell">
<img src="assets/img/logo_final.png" alt="DragonPy Logo"/>
</div>
<div class="large-4 small-10 cell text-white">
<h1 class="hero-text-bottom-padding">Python Best Practices for the modern Web and Data Scientists</h1>
<p class="hero-text-bottom-padding">A Python conference in Ljubljana, Slovenia, taking place on April 18
&
19, 2020. Followed by three days of sprints.</p>
<a href="https://papercall.io/dragonpy" target="_blank" class="btn yellow">Submit your talk</a>
</div>
</div>
<div class="grid-x grid-padding-x align-center home-newsletter">
<div class="large-10 large-offset-2 small-10 cell">
<h1>Stay Up to Date</h1>
</div>
<div class="large-10 large-offset-2 small-10 cell grid-x">
<div class="large-6 cell">
<form action="https://dragonpy.us4.list-manage.com/subscribe/post?u=b5b4174148875c2fb71a0baf9&id=357fcd279f"
method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form"
class="validate"
target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<div id="mce-responses">
<div class="" id="mce-error-response" style="display:none"></div>
<div class="" id="mce-success-response" style="display:none"></div>
</div>
<input type="email" value="" name="EMAIL" class="email" id="mce-EMAIL"
placeholder="email address" required>
<div style="position: absolute; left: -5000px;" aria-hidden="true"><input type="text"
name="b_b5b4174148875c2fb71a0baf9_357fcd279f"
tabindex="-1"
value=""></div>
<div class="clear"><input type="submit" value="Subscribe" name="subscribe"
id="mc-embedded-subscribe" class="btn yellow"></div>
</div>
</form>
<p id="mc_disclaimer" class="text-left">*We are using Mailchimp for sending out newsletters.</p>
</div>
</div>
</div>
<div class="grid-x grid-padding-x align-center">
<div class="large-10 large-offset-2 cell">
<div class="text-center large-text-left">
<a href="https://twitter.com/dragonpyconf?ref_src=twsrc%5Etfw" class="twitter-follow-button"
data-size="large" data-show-count="false">Follow @dragonpyconf</a>
</div>
<a class="twitter-timeline" data-lang="en" data-height="600" data-width="400" data-dnt="true"
href="https://twitter.com/dragonpyconf?ref_src=twsrc%5Etfw">Tweets by dragonpyconf</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>
<div class="grid-container home-sponsors">
<div class="grid-x grid-padding-x align-center-middle">
<div class="large-10 cell">
<h1>Sponsors</h1>
</div>
<div class="small-12 cell"></div>
<div class="large-2 small-6 cell">
<a href="https://niteo.co/" target="_blank" rel="noopener"><img src="assets/img/logo-niteo.svg" alt="Niteo"></a>
</div>
<div class="small-12 cell home-sponsors__cta"></div>
<a href="{{ '/sponsors' | relative_url }}" class="btn green">Become a sponsor</a>
</div>
</div>
</div>
<!-- end home specific content -->
{% include footer.html %}