Skip to content

Commit 976f403

Browse files
committed
transition to jekyll >:)
1 parent 54dcb50 commit 976f403

File tree

11 files changed

+183
-379
lines changed

11 files changed

+183
-379
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
_site
2+
.DS_Store

_includes/footer.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<div class="mastfoot">
2+
<div class="inner row">
3+
<div class="col-md-2 col-md-offset-4">
4+
<a href="https://github.com/codetswana"><img src="img/github.png"></a>
5+
<a href="https://www.facebook.com/groups/1423535481253672"><img src="img/facebook.png"></a>
6+
</div>
7+
<div class="col-md-2">
8+
&copy; 2014</span>
9+
</div>
10+
</div>
11+
</div>

_includes/scripts.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
2+
<script src="js/bootstrap.min.js"></script>

_layouts/default.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<meta name="description" content="codetswana home page">
8+
<link rel="shortcut icon" href="favicon.ico">
9+
10+
<title>{{ page.title }}</title>
11+
12+
<!-- Bootstrap core CSS -->
13+
<link href="css/bootstrap.min.css" rel="stylesheet">
14+
15+
<!-- Custom styles for this template -->
16+
<link href="css/main.css" rel="stylesheet">
17+
18+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
19+
<script src="js/ie10-viewport-bug-workaround.js"></script>
20+
21+
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
22+
<!--[if lt IE 9]>
23+
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
24+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
25+
<![endif]-->
26+
</head>
27+
28+
<body>
29+
{{ content }}
30+
</body>
31+
</html>

_template.html

Lines changed: 0 additions & 77 deletions
This file was deleted.

about.html

Lines changed: 34 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,41 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<meta name="description" content="codetswana home page">
8-
<link rel="shortcut icon" href="favicon.ico">
9-
10-
<title>codetwana</title>
11-
12-
<!-- Bootstrap core CSS -->
13-
<link href="css/bootstrap.min.css" rel="stylesheet">
14-
15-
<!-- Custom styles for this template -->
16-
<link href="css/main.css" rel="stylesheet">
17-
18-
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
19-
<script src="js/ie10-viewport-bug-workaround.js"></script>
20-
21-
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
22-
<!--[if lt IE 9]>
23-
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
24-
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
25-
<![endif]-->
26-
</head>
27-
28-
<body>
29-
30-
<div class="site-wrapper">
31-
32-
<div class="site-wrapper-inner">
33-
34-
<div class="cover-container">
35-
36-
<div class="masthead clearfix">
37-
<div class="inner">
38-
<!-- razzi: this is where the logo should go -->
39-
<h3 class="masthead-brand">codetswana</h3>
40-
<ul class="nav masthead-nav">
41-
<li><a href="/">Home</a></li>
42-
<li><a href="schedule.html">Schedule</a></li>
43-
<li><a href="resources.html">Resources</a></li>
44-
<li class="active"><a href="about.html">About</a></li>
45-
</ul>
46-
</div>
47-
</div>
48-
49-
<div class="inner cover">
50-
<p class="lead inner">codetswana was founded in 2014 to promote global innovation.</p>
51-
<p>Our goal is to build a community of developers and entrepreneurs who can solve problems and create value through technology. Want to get involved? Code to an <a href="schedule.html">event</a> or <a href="mailto:[email protected]">email [email protected]</a>.</p>
52-
53-
<p class="lead inner">Our Partners</p>
54-
<div class="row">
55-
<img href="http://ub.bw" src="http://www.ub.bw/images/UB-logo.png">
56-
<img href="http://www.bih.co.bw/" src="http://www.bih.co.bw/images/bih.jpg">
57-
</div>
58-
</div>
1+
---
2+
layout: default
3+
title: codetswana | schedule
4+
---
5+
6+
<div class="site-wrapper">
7+
8+
<div class="site-wrapper-inner">
9+
10+
<div class="cover-container">
11+
12+
<div class="masthead clearfix">
13+
<div class="inner">
14+
<!-- razzi: this is where the logo should go -->
15+
<h3 class="masthead-brand">codetswana</h3>
16+
<ul class="nav masthead-nav">
17+
<li><a href="/">Home</a></li>
18+
<li><a href="schedule.html">Schedule</a></li>
19+
<li><a href="resources.html">Resources</a></li>
20+
<li class="active"><a href="about.html">About</a></li>
21+
</ul>
22+
</div>
23+
</div>
5924

60-
<div class="mastfoot">
61-
<div class="inner row">
62-
<div class="col-md-2 col-md-offset-4">
63-
<img src="img/github.png">
64-
<img src="img/facebook.png">
65-
</div>
66-
<div class="col-md-2">
67-
&copy; 2014</span>
68-
</div>
69-
</div>
70-
</div>
25+
<div class="inner cover">
26+
<h4 class="inner">codetswana was founded in 2014 to promote global innovation.</h4>
27+
<p>Our goal is to build a community of developers and entrepreneurs who can solve problems and create value through technology. Want to get involved? Come to an <a href="schedule.html">event</a> or <a href="mailto:[email protected]">email [email protected]</a>.</p>
7128

29+
<h4 class="inner">Our Partners</h4>
30+
<div class="row">
31+
<img href="http://ub.bw" src="http://www.ub.bw/images/UB-logo.png">
32+
<img href="http://www.bih.co.bw/" src="http://www.bih.co.bw/images/bih.jpg">
7233
</div>
73-
7434
</div>
7535

36+
{% include footer.html %}
7637
</div>
7738

78-
<!-- Bootstrap core JavaScript -->
79-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
80-
<script src="js/bootstrap.min.js"></script>
81-
{{ scripts }}
82-
</body>
83-
</html>
39+
</div>
40+
41+
</div>

css/main.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
*/
44

55
/* Links */
6-
a,
7-
a:focus,
8-
a:hover {
6+
7+
.masthead a,
8+
.masthead a:focus,
9+
.masthead a:hover {
910
color: #444;
1011
}
1112

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ var livereload = require('gulp-livereload');
33
var tinylr = require('tiny-lr')();
44

55
gulp.task('reload', function() {
6-
gulp.src(['index.html', 'css/main.css'])
6+
gulp.src(['_site/*.html', 'css/main.css'])
77
.pipe(livereload(tinylr));
88
});
99

1010

1111
gulp.task('default', function() {
1212
tinylr.listen(35729);
13-
gulp.watch(['index.html', 'css/main.css'], ['reload']);
13+
gulp.watch(['_site/*.html', 'css/main.css'], ['reload']);
1414
});

index.html

Lines changed: 34 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,40 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="utf-8">
5-
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
<meta name="description" content="codetswana home page">
8-
<link rel="shortcut icon" href="favicon.ico">
9-
10-
<title>codetwana</title>
11-
12-
<!-- Bootstrap core CSS -->
13-
<link href="css/bootstrap.min.css" rel="stylesheet">
14-
15-
<!-- Custom styles for this template -->
16-
<link href="css/main.css" rel="stylesheet">
17-
18-
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
19-
<script src="js/ie10-viewport-bug-workaround.js"></script>
20-
21-
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
22-
<!--[if lt IE 9]>
23-
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
24-
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
25-
<![endif]-->
26-
</head>
27-
28-
<body>
29-
30-
<div class="site-wrapper">
31-
32-
<div class="site-wrapper-inner">
33-
34-
<div class="cover-container">
35-
36-
<div class="masthead clearfix">
37-
<div class="inner">
38-
<!-- razzi: this is where the logo should go -->
39-
<h3 class="masthead-brand">codetswana</h3>
40-
<ul class="nav masthead-nav">
41-
<li class="active"><a href="/">Home</a></li>
42-
<li><a href="schedule.html">Schedule</a></li>
43-
<li><a href="resources.html">Resources</a></li>
44-
<li><a href="about.html">About</a></li>
45-
</ul>
46-
</div>
47-
</div>
48-
49-
<div class="inner cover">
50-
<h1 class="cover-heading">Empowering Botswana developers and entrepreneurs.</h1>
51-
<br>
52-
<br>
53-
<p class="lead event"><a href="https://www.facebook.com/events/312373398887377/?context=create&source=49">Tuesday 3 June: Introductory Developer Meeting at UB</a></p>
54-
<p class="lead event" title="Event Coming Soon">Friday 6 June: Structuring and Deploying Applications</p>
55-
<p class="lead">
56-
<a href="/schedule.html" class="btn btn-lg btn-default">Full Schedule</a>
57-
</p>
58-
</div>
59-
60-
<div class="mastfoot">
61-
<div class="inner row">
62-
<div class="col-md-2 col-md-offset-4">
63-
<img src="img/github.png">
64-
<img src="img/facebook.png">
65-
</div>
66-
<div class="col-md-2">
67-
&copy; 2014</span>
68-
</div>
69-
</div>
70-
</div>
71-
1+
---
2+
layout: default
3+
title: codetswana | home
4+
---
5+
6+
<div class="site-wrapper">
7+
8+
<div class="site-wrapper-inner">
9+
10+
<div class="cover-container">
11+
12+
<div class="masthead clearfix">
13+
<div class="inner">
14+
<!-- razzi: this is where the logo should go -->
15+
<h3 class="masthead-brand">codetswana</h3>
16+
<ul class="nav masthead-nav">
17+
<li class="active"><a href="/">Home</a></li>
18+
<li><a href="schedule.html">Schedule</a></li>
19+
<li><a href="resources.html">Resources</a></li>
20+
<li><a href="about.html">About</a></li>
21+
</ul>
7222
</div>
23+
</div>
7324

25+
<div class="inner cover">
26+
<h1 class="cover-heading">Empowering Botswana developers and entrepreneurs.</h1>
27+
<br>
28+
<p class="lead event"><a href="https://www.facebook.com/events/312373398887377/?context=create&source=49">Tuesday 3 June: Introductory Developer Meeting at UB</a></p>
29+
<p class="lead event" title="Event Coming Soon">Friday 6 June: Structuring and Deploying Applications</p>
30+
<p class="lead">
31+
<a href="/schedule.html" class="btn btn-lg btn-default">Full Schedule</a>
32+
</p>
7433
</div>
7534

35+
{% include footer.html %}
7636
</div>
7737

78-
<!-- Bootstrap core JavaScript -->
79-
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
80-
<script src="js/bootstrap.min.js"></script>
81-
</body>
82-
</html>
38+
</div>
39+
40+
</div>

0 commit comments

Comments
 (0)