Skip to content

Commit 15cacd3

Browse files
committed
Add untracked
1 parent 693d99a commit 15cacd3

18 files changed

+515
-0
lines changed

_includes/avatar.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<div class="avatar">
2+
<div class="img" style="background-image: url({{ include.url }})"></div>
3+
<div class="text">
4+
<h3><a href="{{ include.link }}">{{ include.name }}</a></h3>
5+
<p><b>{{ include.role }}</b></p>
6+
<p class="bio">{{ include.bio }}</p>
7+
</div>
8+
</div>

_includes/contact.html

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
<section id="contact" class="contact bg-primary">
3+
<div class="container">
4+
<h2>Contact us</h2>
5+
<ul class="list-inline list-contact">
6+
{% for network in site.social %}
7+
<li class="contact-box">
8+
<a href="{{ network.url }}" class="btn-outline"><i class="fa fa-fw fa-{{ network.title }}"></i></a>
9+
</li>
10+
{% endfor %}
11+
<li class="contact-box">
12+
<a href="mailto:[email protected]" class="btn-outline"><i class="fa fa-fw fa-envelope-o"></i></a>
13+
</li>
14+
</ul>
15+
</div>
16+
</section>
17+
<footer>
18+
<div class="container">
19+
<p>&copy; 2017 <a href="https://socialgorithm.org">#Socialgorithm</a>. All Rights Reserved. Help us spread the <i class="fa fa-heart"></i> for tech!</p>
20+
</div>
21+
</footer>

_includes/head.html

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<head>
2+
3+
<meta charset="utf-8">
4+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<meta name="description" content="">
7+
<meta name="author" content="">
8+
9+
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
10+
11+
<!-- Bootstrap Core CSS -->
12+
<link rel="stylesheet" href="/vendor/bootstrap/css/bootstrap.min.css" type="text/css">
13+
14+
<!-- Custom Fonts -->
15+
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
16+
<link href="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900" rel="stylesheet">
17+
<link href="https://fonts.googleapis.com/css?family=Muli" rel="stylesheet">
18+
19+
<!-- Plugin CSS -->
20+
<link rel="stylesheet" href="/css/animate.min.css" type="text/css">
21+
<link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css">
22+
<link rel="stylesheet" href="/vendor/simple-line-icons/css/simple-line-icons.css">
23+
24+
<!-- Custom CSS
25+
<link rel="stylesheet" href="css/main.css" type="text/css"> -->
26+
<link href="/css/new-age.min.css" rel="stylesheet">
27+
28+
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
29+
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
30+
<!--[if lt IE 9]>
31+
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
32+
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
33+
<![endif]-->
34+
35+
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
36+
37+
</head>

_includes/header.html

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<header>
2+
<div class="container">
3+
<div class="row">
4+
<div class="col-sm-7">
5+
<div class="header-content">
6+
<div class="header-content-inner">
7+
<h1>We are a community that organises hackathons, workshops and coding challenges.</h1>
8+
<p style="margin-top: 2.5em">
9+
<a href="/workshops" class="btn btn-outline btn-xl">See our Workshops!</a>
10+
</p>
11+
</div>
12+
</div>
13+
</div>
14+
<div class="col-sm-5 text-3d hidden-sm hidden-xs" style="font-size: 9em; line-height: 5em; text-align: center;">
15+
<span style="font-size: 0.7em; font-weight: bold">#</span>sg
16+
</div>
17+
</div>
18+
</div>
19+
</header>

_includes/image.html

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<table class="image">
2+
<caption align="bottom">{{ include.description }}</caption>
3+
<tr>
4+
<td>
5+
<img class="img img-responsive img-thumbnail" src="{{ include.url }}" alt="{{ include.description }}" />
6+
</td>
7+
</tr>
8+
</table>

_includes/nav-blog-full-screen.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<div class="outer-menu">
2+
<input class="checkbox-toggle" type="checkbox" />
3+
<div class="hamburger">
4+
<div></div>
5+
</div>
6+
<div class="menu">
7+
<div>
8+
<div>
9+
<ul>
10+
<li><a href="/">Blog</a></li>
11+
<li>
12+
<a class="page-scroll" href="/" title="..is wherever I'm with you... Oh Home, let me go home!">Home</a>
13+
</li>
14+
<li>
15+
<a class="page-scroll" href="/blog/">Blog</a>
16+
</li>
17+
<li>
18+
<a class="page-scroll" href="#contact">Contact</a>
19+
</li>
20+
{% for social in site.social %}
21+
{% if social.url %}
22+
<li><a class="icon-{{ social.icon }}" href="{{ social.url }}" {% if social.desc %} title="{{ social.desc }}"{% endif %}>
23+
<i class="fa fa-{{ social.icon }}"></i>
24+
</a></li>
25+
{% endif %}
26+
{% endfor %}
27+
</ul>
28+
</div>
29+
</div>
30+
</div>
31+
</div>

_includes/nav-blog.html

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
2+
<div class="container">
3+
<!-- Brand and toggle get grouped for better mobile display -->
4+
<div class="navbar-header">
5+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
6+
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
7+
</button>
8+
<a class="navbar-brand page-scroll" href="/">#socialgorithm</a>
9+
</div>
10+
11+
<!-- Collect the nav links, forms, and other content for toggling -->
12+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
13+
<ul class="nav navbar-nav navbar-right">
14+
<li>
15+
<a href="/" title="..is wherever I'm with you... Oh Home, let me go home!">Home</a>
16+
</li>
17+
<li>
18+
<a href="/workshops">Workshops</a>
19+
</li>
20+
<li>
21+
<a href="/team">Team</a>
22+
</li>
23+
<li>
24+
<a href="/#contact">Contact</a>
25+
</li>
26+
<li>
27+
<a href="/blog/">Blog</a>
28+
</li>
29+
<li>
30+
<a href="https://github.com/socialgorithm">
31+
<i class="fa fa-github"></i> Github
32+
</a>
33+
</li>
34+
<li>
35+
<a href="https://socialgorithm-slack.herokuapp.com/" title='Get an invitation to our Slack team!'>
36+
<i class="fa fa-slack"></i> Slack
37+
</a>
38+
</li>
39+
</ul>
40+
</div>
41+
<!-- /.navbar-collapse -->
42+
</div>
43+
<!-- /.container-fluid -->
44+
</nav>

_includes/nav.html

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<nav id="mainNav" class="navbar navbar-default navbar-fixed-top">
2+
<div class="container">
3+
<!-- Brand and toggle get grouped for better mobile display -->
4+
<div class="navbar-header">
5+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
6+
<span class="sr-only">Toggle navigation</span> Menu <i class="fa fa-bars"></i>
7+
</button>
8+
<a class="navbar-brand page-scroll" href="#page-top" title="We're totally an idea">#socialgorithm</a>
9+
</div>
10+
11+
<!-- Collect the nav links, forms, and other content for toggling -->
12+
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
13+
<ul class="nav navbar-nav navbar-right">
14+
<li>
15+
<a class="page-scroll" href="/" title="..is wherever I'm with you... Oh Home, let me go home!">Home</a>
16+
</li>
17+
<li>
18+
<a href="/workshops">Workshops</a>
19+
</li>
20+
<li>
21+
<a href="/team">Team</a>
22+
</li>
23+
<li>
24+
<a class="page-scroll" href="#contact">Contact</a>
25+
</li>
26+
<li>
27+
<a href="/blog/">Blog</a>
28+
</li>
29+
<li>
30+
<a href="https://github.com/socialgorithm">
31+
<i class="fa fa-github"></i> Github
32+
</a>
33+
</li>
34+
<li>
35+
<a href="https://socialgorithm-slack.herokuapp.com/" title='Get an invitation to our Slack team!'>
36+
<i class="fa fa-slack"></i> Slack
37+
</a>
38+
</li>
39+
</ul>
40+
</div>
41+
<!-- /.navbar-collapse -->
42+
</div>
43+
<!-- /.container-fluid -->
44+
</nav>

_includes/partners.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
3+
<section id="features" class="features" style='background: #efefef'>
4+
<div class='container'>
5+
<div class='row'>
6+
<div class='col-md-12 text-center'>
7+
<div class="section-heading">
8+
<h2>Partners & Sponsors</h2>
9+
<hr>
10+
</div>
11+
</div>
12+
</div>
13+
<div class='row text-center'>
14+
<div class='col-md-4'>
15+
<div class='img-partner'>
16+
<a href='http://sheplusplus.org' title='She++' ><img src='/img/partners/sheplusplus.png' alt='She++' class='img'></a>
17+
</div>
18+
</div>
19+
<!--<div class='col-md-4'>
20+
<div class='img-partner'>
21+
<a href='https://morganstanley.com' title='Morgan Stanley'><img src='/img/partners/ms.png' alt='Morgan Stanley' class='img img-thumbnail'></a>
22+
</div>
23+
</div>-->
24+
<div class='col-md-4'>
25+
<div class='img-partner'>
26+
<a href='https://techsoc.io' title='UCL Tech Society'><img src='/img/partners/ucl-techsoc.png' alt='UCL Tech Society' class='img'></a>
27+
</div>
28+
</div>
29+
</div>
30+
</div>
31+
</section>

_includes/post_list_item.html

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{% if include.post.url %}
2+
<div class="media">
3+
<div class="media-left">
4+
<a href="{{ include.post.url | prepend: site.baseurl }}">
5+
<img class="media-object img img-thumbnail" style="width: 200px; max-height: 200px;" src="/{{ include.post.header-img | prepend: site.baseurl }}" alt="{{ include.post.title }}">
6+
</a>
7+
</div>
8+
<div class="media-body">
9+
<small class="pul-right">{{ include.post.date | date: "%B %-d, %Y" }}</small>
10+
<h3 class="media-heading"><a href="{{ include.post.url | prepend: site.baseurl }}">{{ include.post.title }}</a></h3>
11+
<div style="font-size: 0.9em;">{{ include.post.excerpt }}</div>
12+
</div>
13+
</div>
14+
{% endif %}

_includes/scripts.html

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!-- jQuery -->
2+
<script src="/js/jquery.js"></script>
3+
4+
<!-- Bootstrap Core JavaScript
5+
<script src="js/bootstrap.min.js"></script> -->
6+
7+
<!-- Plugin JavaScript -->
8+
<script src="/js/jquery.easing.min.js"></script>
9+
<script src="/js/jquery.fittext.js"></script>
10+
<script src="/js/wow.min.js"></script>
11+
12+
<!-- Custom Theme JavaScript -->
13+
<script src="/js/creative.js"></script>
14+
15+
<!-- jQuery
16+
<script src="/vendor/jquery/jquery.min.js"></script> -->
17+
18+
<!-- Bootstrap Core JavaScript -->
19+
<script src="/vendor/bootstrap/js/bootstrap.min.js"></script>
20+
21+
<!-- Plugin JavaScript -->
22+
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js"></script>
23+
24+
<!-- Theme JavaScript -->
25+
<script src="/js/new-age.min.js"></script>
26+
27+
{% if site.google_analytics %}
28+
<!-- Global site tag (gtag.js) - Google Analytics -->
29+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}"></script>
30+
<script>
31+
window.dataLayer = window.dataLayer || [];
32+
function gtag(){dataLayer.push(arguments);}
33+
gtag('js', new Date());
34+
35+
gtag('config', '{{ site.google_analytics }}');
36+
</script>
37+
{% endif %}

_includes/services.html

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
3+
<section id="features" class="features">
4+
<div class="container">
5+
<div class="row">
6+
<div class="col-lg-12 text-center">
7+
<div class="section-heading">
8+
<h2>Connecting Students with Mentors and Companies</h2>
9+
<p class="text-muted">And having fun in the process!</p>
10+
<hr>
11+
</div>
12+
</div>
13+
</div>
14+
<div class="row">
15+
<div class="col-md-12">
16+
<div class="container-fluid">
17+
<div class="row">
18+
<div class="col-md-4">
19+
<div class="feature-item">
20+
<i class="icon-puzzle text-primary"></i>
21+
<h3>Technology</h3>
22+
<p class="text-muted">
23+
We provide all the technology + experienced mentors from the industry to our events. Everything is <em>of course</em> Open Source.
24+
</p>
25+
</div>
26+
</div>
27+
<div class="col-md-4">
28+
<div class="feature-item">
29+
<i class="icon-home text-primary"></i>
30+
<h3>Companies</h3>
31+
<p class="text-muted">
32+
Industry-leading companies partner with us and provide space &amp; food!
33+
</p>
34+
<p class="text-muted">
35+
We also offer technical workshops for employee offsites and challenges.
36+
</p>
37+
</div>
38+
</div>
39+
<div class="col-md-4">
40+
<div class="feature-item">
41+
<i class="icon-people text-primary"></i>
42+
<h3>Students</h3>
43+
<p class="text-muted">
44+
Students come to the events from local universities thanks to the support of our partner student-led tech societies.
45+
</p>
46+
</div>
47+
</div>
48+
</div>
49+
</div>
50+
</div>
51+
</div>
52+
</div>
53+
</section>

0 commit comments

Comments
 (0)