Skip to content

Commit cd32737

Browse files
committed
update content
1 parent 771a9ba commit cd32737

File tree

6 files changed

+102
-50
lines changed

6 files changed

+102
-50
lines changed

_layouts/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
<div class="cover-container">
3434

35-
<div class="masthead clearfix">
35+
<div class="masthead">
3636
<div class="inner">
3737
<h3 class="masthead-brand"><a href="/">codetswana</a></h3>
3838
<ul class="nav masthead-nav">
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Deploying Applications
3+
layout: default
4+
summary: We cover git, Heroku, and Azure and how they can be used to get your application online.
5+
---
6+
7+
<div class="inner cover">
8+
9+
<h2>Deploying Applications</h2>
10+
11+
<br>
12+
13+
<p>Here you can find useful resources for deploying servers. More information coming soon.</p>
14+
15+
<br>
16+
17+
<table class="table table-striped">
18+
<tr>
19+
<td><a href="http://www.heroku.com">Heroku</a></td>
20+
<td>Cloud deployment that is easy-to-use and free for one server.</td>
21+
</tr>
22+
<tr>
23+
<td><a href="http://azure.microsoft.com/">Microsoft Azure</a></td>
24+
<td>Microsoft's platform for deploying applications</td>
25+
</tr>
26+
<tr>
27+
<td><a href="http://pages.github.com">Github Pages</a>
28+
<td>Free static site hosting.</td>
29+
</tr>
30+
<tr>
31+
<td><a href="http://aws.amazon.com">Amazon Web Services</a>
32+
<td>Amazon's powerful infrastructure-as-a-service.</td>
33+
</tr>
34+
</table>
35+
</td>
36+
</div>

css/main.css

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
* Base structure
2323
*/
2424

25-
html,
25+
/*html,
2626
body {
2727
height: 100%;
2828
}
2929
body {
3030
text-align: center;
3131
}
32-
32+
*/
3333
/* Extra markup and styles for table-esque vertical and horizontal centering */
3434
.site-wrapper {
3535
display: table;
@@ -108,11 +108,6 @@ body {
108108
}
109109

110110

111-
/*
112-
* Footer
113-
*/
114-
115-
116111
/*
117112
* Affix and center
118113
*/
@@ -148,7 +143,7 @@ body {
148143
}
149144

150145
.cover {
151-
margin-top: 50px;
146+
margin-top: 150px;
152147
}
153148

154149
.event {

img/microsoft_session.jpg

1.69 MB
Loading

index.html

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,18 @@
44
---
55

66
<div class="inner cover">
7-
<img src="img/logo.png">
8-
<h1 class="cover-heading">Empowering developers and entrepreneurs in Botswana.</h1>
7+
<div class="row">
8+
<img class="col-sm-5" src="img/logo.png">
9+
<h1 class="cover-heading col-sm-6 col-sm-offset-1">Empowering developers and entrepreneurs in Botswana.</h1>
10+
</div>
911
<br>
10-
<p class="lead event" title="Event Coming Soon">Thursday 19 June: HTML5 and the Modern Web</p>
11-
<p class="lead">
12-
<a href="schedule" class="btn btn-lg btn-default">Full Schedule</a>
13-
</p>
12+
<br>
13+
<p>Upcoming Events:</p>
14+
<p class="lead event"><a href="https://www.facebook.com/events/1440891712837410/">Thursday 19 June: HTML5 and the Modern Web</a></p>
15+
<p>Latest news:</p>
16+
17+
{% assign post = site.posts.first %}
18+
19+
<h3>{{ post.date | date_to_string }} <a href="{{ post.url }}">{{ post.title }}</a></h3>
20+
<p>{{ post.summary }}</p>
1421
</div>

resources.html

Lines changed: 49 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,56 @@
33
layout: default
44
---
55

6-
<h3>Free Online Learning Resources</h3>
7-
<table class="table table-striped">
8-
<tr>
9-
<td><a href="http://www.codecademy.com">Codecademy</a></td>
10-
<td>Good for programming practice and learning new technologies</td>
11-
</tr>
12-
<tr>
13-
<td><a href="http://www.microsoftvirtualacademy.com">Microsoft Virtual Academy</a></td>
14-
<td>Up-to-date courses on Microsoft technologies</td>
15-
</tr>
16-
<tr>
17-
<td><a href="http://www.udacity.com">Udacity</a></td>
18-
<td>High-quality video courses taught by Stanford and Google</td>
19-
</tr>
20-
<tr>
21-
<td><a href="http://www.thecodeplayer.com">thecodeplayer.com</a></td>
22-
<td>A fun way to learn html, css, and javascript</td>
23-
</tr>
24-
</table>
6+
<div class="cover">
7+
<h3>Free Online Learning Resources</h3>
8+
<table class="table table-striped">
9+
<tr>
10+
<td><a href="http://www.codecademy.com">Codecademy</a></td>
11+
<td>Good for programming practice and learning new technologies</td>
12+
</tr>
13+
<tr>
14+
<td><a href="http://www.microsoftvirtualacademy.com">Microsoft Virtual Academy</a></td>
15+
<td>Up-to-date courses on Microsoft technologies</td>
16+
</tr>
17+
<tr>
18+
<td><a href="http://www.udacity.com">Udacity</a></td>
19+
<td>High-quality video courses taught by Stanford and Google</td>
20+
</tr>
21+
<tr>
22+
<td><a href="http://www.thecodeplayer.com">thecodeplayer.com</a></td>
23+
<td>A fun way to learn html, css, and javascript</td>
24+
</tr>
25+
</table>
2526

26-
<br>
27+
<br>
2728

28-
<h3>Web Application Frameworks</h3>
29-
<table class="table table-striped">
30-
<tr>
31-
<td><a href="http://www.djangoproject.com">Django</a></td>
32-
<td>A popular Python web framework with good support for databases.</td>
33-
</tr>
34-
</table>
29+
<h3>Web Application Frameworks</h3>
30+
<table class="table table-striped">
31+
<tr>
32+
<td><a href="http://www.djangoproject.com">Django</a></td>
33+
<td>A popular Python web framework with good support for databases.</td>
34+
</tr>
35+
<tr>
36+
<td><a href="http://www.asp.net/mvc">ASP MVC</a></td>
37+
<td>Microsoft's C# web application framework</td>
38+
</tr>
39+
</table>
3540

36-
<br>
41+
<br>
3742

38-
<h3>Server Deployment Platforms</h3>
39-
<table class="table table-striped">
40-
<tr>
41-
<td><a href="http://www.heroku.com">Heroku</a></td>
42-
<td>Server platform supporting a variety of languages. Free for one server.</td>
43-
</tr>
44-
</table>
43+
<h3>Server Deployment Platforms</h3>
44+
<table class="table table-striped">
45+
<tr>
46+
<td><a href="http://www.heroku.com">Heroku</a></td>
47+
<td>Server platform supporting a variety of languages. Free for one server.</td>
48+
</tr>
49+
<tr>
50+
<td><a href="http://azure.microsoft.com/">Microsoft Azure</a></td>
51+
<td>Microsoft's platform for deploying applications</td>
52+
</tr>
53+
<tr>
54+
<td><a href="http://aws.amazon.com">Amazon Web Services</a>
55+
<td>Amazon's powerful infrastructure-as-a-service.</td>
56+
</tr>
57+
</table>
58+
</div>

0 commit comments

Comments
 (0)