forked from schoolofdata-ch/schoolofdata-ch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.en.html
118 lines (112 loc) · 3.64 KB
/
index.en.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
title: Prototype Fund Switzerland
language: English
lang: en
ref: index
layout: default
---
<header>
<h1>{{ site.en.tagline }}</h1>
<h5>{{ site.en.description }}</h5>
</header>
<hr>
<h2>{{ site.en.current.title }}</h2>
<section class="tiles">
{% for post in site.posts %}{% if post.frontpage %}
<article class="{{ post.style }}">
<span class="image">
{% if post.image contains '://' %}
<img src="{{ post.image }}" />
{% else %}
<img src="{{ site.baseurl }}/{{ post.image }}" />
{% endif %}
</span>
<a href="{{ post.url | prepend: site.baseurl }}">
<p>{{ post.when | date: "%b %-d, %Y" }}</p>
<h2>{{ post.title }}</h2>
<div class="content">
<p>{{ post.tagline }}</p>
</div>
</a>
</article>
{% endif %}{% endfor %}
<article class="style7">
<span class="image"><img src="{{ site.baseurl }}/images/pflogo.png"></span>
<a href="#contact">
<p>-/-</p>
<h2>Your Event</h2>
<div class="content">
<p>Open to suggestions</p>
</div>
</a>
</article>
</section>
<hr>
<section id="info">
<div class="row">
<div class="6u 12u$(medium)">
<div class="service-item">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-question fa-stack-1x text-primary"></i>
</span>
{% capture mi1 %}{% include index-offer.en.include %}{% endcapture %}
{{ mi1 | markdownify }}
</div>
</div>
<div class="6u 12u$(medium)">
<div class="service-item">
<span class="fa-stack fa-4x">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-life-ring fa-stack-1x text-primary"></i>
</span>
{% capture mi2 %}{% include index-help.en.include %}{% endcapture %}
{{ mi2 | markdownify }}
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<h2>{{ site.en.signup.title }}</h2>
<form method="post" action="https://utou.ch/scoda.php">
<div class="row uniform">
<div class="6u 12u$(small)">
{{ site.en.signup.header }}
<input type="radio" checked id="signup-human-me" name="signup-human">
<label for="signup-human-me">{{ site.en.signup.myself }}</label>
<!--
<div class="select-wrapper">
<select name="SKILL" id="signup-category">
<option value="">{{ site.en.signup.skills }}</option>
<option value="Beginner">{{ site.en.signup.beginner }}</option>
<option value="Intermediate">{{ site.en.signup.intermediate }}</option>
<option value="Advanced">{{ site.en.signup.advanced }}</option>
<option value="Expert">{{ site.en.signup.expert }}</option>
</select>
</div>
-->
</div>
<div class="6u$ 12u$(small)">
<input type="radio" id="signup-human-org" name="signup-human" onclick="$('#signup-org').show()">
<label for="signup-human-org">{{ site.en.signup.myorg }}</label>
<input style="display:none" type="text" name="ORG" id="signup-org" value="" placeholder="{{ site.en.signup.org }}" />
</div>
<div class="6u 12u$(xsmall)">
<input type="text" name="NAME" id="signup-name" value="" placeholder="{{ site.en.signup.name }}" required />
</div>
<div class="6u$ 12u$(xsmall)">
<input type="email" name="EMAIL" id="signup-email" value="" placeholder="{{ site.en.signup.email }}" required />
</div>
<div class="12u$">
<textarea name="COMMENT" id="signup-message" placeholder="{{ site.en.signup.comment }}" rows="6" required></textarea>
</div>
<div class="12u$">
<div class="g-recaptcha" data-sitekey="{{ site.grecaptcha.key }}"></div>
<input type="hidden" name="lang" value=".en" />
<ul class="actions">
<li><input type="submit" value="{{ site.en.signup.send }}" class="special" /></li>
</ul>
</div>
</div>
</form>
</section>