forked from CSSUoB/cssuob.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clubs.html
81 lines (77 loc) · 2.46 KB
/
clubs.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
---
layout: page
title: Developer Student Clubs
styles:
- /css/clubs.css
scripts:
- /js/fadein.js
---
<a class="dsc-logo" href="https://developers.google.com/community/dsc/">
<img alt="Developer Student Clubs University of Birmingham" src="/assets/dsc.png" />
</a>
<div class="dsc-description text-container">
<p>
Hello, and welcome to the Developer Student Club at the University of
Birmingham!
</p>
<p>
We're really proud to be part of a a new, worldwide initiative, lead by
Google! Throughout the year, we're going to be running developer clubs, with
talks, workshops, mini-hackathons, and anything else that you guys want.
</p>
<p>
The idea of the program is to try and link the theory that we learn at uni,
with the practical skills required in the real world. So, during our
sessions, we're going to be using industry-standard tools, common APIs, and
a whole variety of different technologies to build awesome real-world
projects that can go on a CV or portfolio.
</p>
<p>
Essentially, we're here to help you out, so if there's anything that you
think we should run, then <a href="/about#contact-us">contact us</a>!
</p>
{% if site.clubs.size != 0 %}
<br />
<h1>Projects</h1>
<p>
Here you can see a list of some of our previous epic projects/workshops that
we've had!
</p>
{% endif %}
</div>
<div class="fadein-container">
{% assign session = site.clubs.last %}
<div class="club recent fadein">
{% if session.header-image %}
<img alt="{{ session.title }}" class="header-image" src="{{ session.header-image | relative_url }}" />
{% endif %}
<div class="details">
<h2>{{ session.title }}</h2>
<h3 class="post-date">{{ session.date | date: "%b %-d, %Y"}}</h3>
<div>
{{ session.content | markdownify }}
</div>
</div>
</div>
<div class="clubs-list">
{% for session in site.clubs reversed %} {% if forloop.first == true %} {%
continue %} {% endif %}
<div class="club not-recent fadein">
{% if session.header-image %}
<img
alt="{{ session.title }}"
class="header-image"
src="{{ session.header-image | relative_url }}"
/>
{% endif %}
<div class="details">
<h2>{{ session.title }}</h2>
<h3 class="post-date">{{ session.date | date: "%b %-d, %Y"}}</h3>
<div>
{{ session.content | markdownify }}
</div>
</div>
</div>
{% endfor %}
</div>
</div>