Skip to content

Commit dc2a947

Browse files
committed
improve events/workshops page
1 parent 9622cac commit dc2a947

17 files changed

+421
-308
lines changed

_includes/contact.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<section id="contact" class="contact bg-primary">
33
<div class="container">
44
<h2>Contact us</h2>
5-
<ul class="list-inline list-social">
5+
<ul class="list-inline list-contact">
66
{% for network in site.social %}
7-
<li class="social-{{ network.title }}">
8-
<a href="{{ network.url }}" class="btn-social btn-outline"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
7+
<li class="contact-box-{{ network.title }}">
8+
<a href="{{ network.url }}" class="btn-outline"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
99
</li>
1010
{% endfor %}
11-
<li class="social-email">
12-
<a href="mailto:[email protected]" class="btn-social btn-outline"><i class="fa fa-fw fa-envelope-o"></i></a>
11+
<li class="contact-box-email">
12+
<a href="mailto:[email protected]" class="btn-outline"><i class="fa fa-fw fa-envelope-o"></i></a>
1313
</li>
1414
</ul>
1515
</div>

_includes/header.html

+1-3
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@
55
<div class="header-content">
66
<div class="header-content-inner">
77
<h1>We organise hackathons, workshops and coding challenges.</h1>
8-
<h2>Connecting companies with students.</h2>
98
<p style="margin-top: 2.5em">
10-
<a href="/events" class="btn btn-outline btn-xl">Join an event!</a>
11-
<a href="/host" class="btn btn-outline btn-xl">Help us host!</a>
9+
<a href="/workshops" class="btn btn-outline btn-xl">See our Workshops!</a>
1210
</p>
1311
</div>
1412
</div>

_includes/nav-blog.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<a href="/" title="..is wherever I'm with you... Oh Home, let me go home!">Home</a>
1616
</li>
1717
<li>
18-
<a href="/events">Events</a>
18+
<a href="/workshops">Workshops</a>
1919
</li>
2020
<li>
2121
<a href="/team">Team</a>

_includes/nav.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<a class="page-scroll" href="/" title="..is wherever I'm with you... Oh Home, let me go home!">Home</a>
1616
</li>
1717
<li>
18-
<a href="/events">Events</a>
18+
<a href="/workshops">Workshops</a>
1919
</li>
2020
<li>
2121
<a href="/team">Team</a>

_includes/services.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="row">
66
<div class="col-lg-12 text-center">
77
<div class="section-heading">
8-
<h2>Connecting Mentors, Students and Companies</h2>
8+
<h2>Connecting Students with Mentors and Companies</h2>
99
<p class="text-muted">And having fun in the process!</p>
1010
<hr>
1111
</div>
@@ -31,6 +31,9 @@ <h3>Companies</h3>
3131
<p class="text-muted">
3232
Industry-leading companies partner with us and provide space &amp; food!
3333
</p>
34+
<p class="text-muted">
35+
We also offer technical workshops for employee offsites and challenges.
36+
</p>
3437
</div>
3538
</div>
3639
<div class="col-md-4">

_layouts/page-wide.html

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
layout: default
3+
---
4+
5+
<div style="background: #333; height: 50px"></div>
6+
7+
<!-- Post Content -->
8+
<article id="post" style="margin: 3em 0">
9+
{{ content }}
10+
</article>

_posts/2017-08-12-socialgorithm-at-shard.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ header-img: "img/events/shard_1/room.jpg"
88
categories: events
99
event_date: 2017-03-06
1010
event_location: The Shard, London
11+
event_abstract: We partnered with the University of Warwick to host a game theory and AI workshop.
1112
---
1213

1314
We were invited to participate in [Tech Night London](https://www.facebook.com/media/set/?set=a.1170152843017561.1073741846.701527709880079&type=3),

_posts/2017-08-13-socialgorithm-at-morgan-stanley.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ header-img: "img/events/ms_1/group1.jpg"
88
categories: events
99
event_date: 2017-05-31
1010
event_location: Morgan Stanley HQ, Canary Wharf, London
11+
event_abstract: Our friends from She++ and UCL TechSoc reached out to organise a coding workshop for first and second year students.
1112
---
1213

1314
Almost immediately after finishing our [coding workshop at The Shard](/events/2017/08/12/socialgorithm-at-shard/), we were invited by [University College London's Tech Society (UCL TechSoc)](https://techsoc.io/) and [ShePlusPlus](https://sheplusplus.org/) to host an algorithmic battle at the [Morgan Stanley HQ](https://www.facebook.com/events/1874748126125491) in Canary Wharf. We must be doing something right!

css/new-age.css

+8-8
Original file line numberDiff line numberDiff line change
@@ -364,10 +364,10 @@ section.contact h2 {
364364
section.contact h2 i {
365365
color: #dd4b39;
366366
}
367-
section.contact ul.list-social {
367+
section.contact .list-contact {
368368
margin-bottom: 0;
369369
}
370-
section.contact ul.list-social li a {
370+
section.contact .list-contact li a {
371371
display: block;
372372
height: 80px;
373373
width: 80px;
@@ -376,22 +376,22 @@ section.contact ul.list-social li a {
376376
border-radius: 100%;
377377
color: white;
378378
}
379-
section.contact ul.list-social li.social-twitter a {
379+
section.contact .list-contact li.contact-box-twitter a {
380380
background-color: #1da1f2;
381381
}
382-
section.contact ul.list-social li.social-twitter a:hover {
382+
section.contact .list-contact li.contact-box-twitter a:hover {
383383
background-color: #0d95e8;
384384
}
385-
section.contact ul.list-social li.social-facebook a {
385+
section.contact .list-contact li.contact-box-facebook a {
386386
background-color: #3b5998;
387387
}
388-
section.contact ul.list-social li.social-facebook a:hover {
388+
section.contact .list-contact li.contact-box-facebook a:hover {
389389
background-color: #344e86;
390390
}
391-
section.contact ul.list-social li.social-google-plus a {
391+
section.contact .list-contact li.contact-box-google-plus a {
392392
background-color: #dd4b39;
393393
}
394-
section.contact ul.list-social li.social-google-plus a:hover {
394+
section.contact .list-contact li.contact-box-google-plus a:hover {
395395
background-color: #d73925;
396396
}
397397
.text-3d {

css/new-age.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

events.html

-79
This file was deleted.

host.html

-66
This file was deleted.

less/new-age.less

+4-4
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ section.contact {
351351
color: @brand-google-plus;
352352
}
353353
}
354-
ul.list-social {
354+
.list-contact {
355355
margin-bottom: 0;
356356
li {
357357
a {
@@ -363,23 +363,23 @@ section.contact {
363363
border-radius: 100%;
364364
color: white;
365365
}
366-
&.social-twitter {
366+
&.contact-box-twitter {
367367
a {
368368
background-color: @brand-twitter;
369369
&:hover {
370370
background-color: darken(@brand-twitter, 5%);
371371
}
372372
}
373373
}
374-
&.social-facebook {
374+
&.contact-box-facebook {
375375
a {
376376
background-color: @brand-facebook;
377377
&:hover {
378378
background-color: darken(@brand-facebook, 5%);
379379
}
380380
}
381381
}
382-
&.social-google-plus {
382+
&.contact-box-google-plus {
383383
a {
384384
background-color: @brand-google-plus;
385385
&:hover {

package-lock.json

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "UNLICENSED",
88
"scripts": {
99
"build": "gulp build",
10-
"serve": "gulp serve"
10+
"start": "gulp serve"
1111
},
1212
"devDependencies": {
1313
"bootstrap": "^3.3.7",
@@ -16,8 +16,8 @@
1616
"gulp": "^3.9.1",
1717
"gulp-clean-css": "^2.0.10",
1818
"gulp-header": "^1.8.7",
19-
"gulp-less": "^3.1.0",
20-
"gulp-rename": "^1.2.2",
19+
"gulp-less": "^3.5.0",
20+
"gulp-rename": "^1.2.3",
2121
"gulp-uglify": "^1.5.4",
2222
"jquery": "^3.3.1"
2323
},

0 commit comments

Comments
 (0)