Skip to content

Commit 858aeea

Browse files
committed
Missing files
1 parent 429f316 commit 858aeea

File tree

6 files changed

+141
-0
lines changed

6 files changed

+141
-0
lines changed

_bak/events.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: page
3+
title: Events
4+
subtitle: Definitely not a waste of time
5+
permalink: /events/
6+
javascript: [jquery-1.11.2.min.js, modernizr.js, events.js]
7+
---
8+
<section id="cd-timeline" class="cd-container">
9+
10+
</section> <!-- cd-timeline -->

_bak/projects.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
layout: page
3+
title: Projects
4+
subtitle: Do a thing
5+
permalink: /projects/
6+
---
7+
8+
<div class="projects">
9+
<ul>
10+
{% for project in site.projects %}
11+
<li>
12+
13+
{% if project.image %}
14+
<img src="{{ site.baseurl }}/images/{{ projects.image }}">
15+
{% else %}
16+
<!-- Place Holder -->
17+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
18+
{% endif %}
19+
20+
<h1><a href="{{ project.link }}">{{ project.title }}</a></h1>
21+
22+
{% if project.contributors %}
23+
<h6 class="projects-contributors">Contributors : {{ project.contributors }}</h6>
24+
{% endif %}
25+
26+
<p>{{ project.content }}</p>
27+
28+
</li>
29+
{% endfor %}
30+
</ul>
31+
</div>

_bak/surveys.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: page
3+
title: Surveys
4+
subtitle: We love feedback
5+
permalink: /surveys/
6+
---
7+
#[Spring 2015 Club Survey](https://www.surveymonkey.com/s/YY96Y38) - End of Spring semester.
8+
9+
* How did we do this semester? Let us know!
10+
11+
#[Web Development Day Survey](https://www.surveymonkey.com/s/982NHY7) - May 1st, 2015 event.
12+
13+
* Git crash course + web development workshop.

_bak/team.md

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: page
3+
title: Team
4+
subtitle: The people who make this possible
5+
permalink: /team/
6+
javascripts: [jquery-1.11.2.min.js, team.js]
7+
---
8+
<div class="team">
9+
<ul>
10+
<li class="col-md-4">
11+
<!-- ????? -->
12+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
13+
<h1> Lorem ipsum dolor </h1>
14+
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
15+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
16+
</li>
17+
18+
<li class="col-md-4">
19+
<!-- ????? -->
20+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
21+
<h1> Lorem ipsum dolor </h1>
22+
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
23+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
24+
</li>
25+
26+
27+
<li class="col-md-4">
28+
<!-- ????? -->
29+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
30+
<h1> Lorem ipsum dolor </h1>
31+
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
32+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
33+
</li>
34+
35+
36+
<li class="col-md-4">
37+
<!-- ????? -->
38+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
39+
<h1> Lorem ipsum dolor </h1>
40+
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
41+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
42+
</li>
43+
44+
45+
<li class="col-md-4">
46+
<!-- ????? -->
47+
<img src="{{ site.baseurl }}/images/projects-placeholder.png">
48+
<h1> Lorem ipsum dolor </h1>
49+
<p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
50+
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam</p>
51+
</li>
52+
</ul>
53+
</div>

_includes/.header.html.swp

12 KB
Binary file not shown.

apply.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
title: Apply
3+
subtitle: Apply for the fun
4+
permalink: /apply/
5+
---
6+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
7+
<html>
8+
<head>
9+
<!--Add the title of your typeform below-->
10+
<title>dvcoders mailing list</title>
11+
12+
<!--CSS styles that ensure your typeform takes up all the available screen space (DO NOT EDIT!)-->
13+
<style type="text/css">
14+
html{
15+
margin: 0;
16+
height: 100%;
17+
overflow: hidden;
18+
}
19+
iframe{
20+
position: absolute;
21+
left:0;
22+
right:0;
23+
bottom:0;
24+
top:0;
25+
border:0;
26+
}
27+
</style>
28+
</head>
29+
<body>
30+
<iframe id="typeform-full" width="100%" height="100%" frameborder="0" src="https://dvcodersclub.typeform.com/to/Pe9H4V"></iframe>
31+
<script type="text/javascript" src="https://s3-eu-west-1.amazonaws.com/share.typeform.com/embed.js"></script>
32+
</body>
33+
</html>
34+

0 commit comments

Comments
 (0)