forked from python-namibia/python-namibia.github.io-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 2.16 KB
/
index.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
---
---
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="description" content="GitHub Training at Python Namibia : Collaborative website for GitHub training at the Python Namibia conference">
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>GitHub ♥ Python Namibia</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/python-namibia/python-namibia.github.io">View on GitHub</a>
<h1 id="project_title">GitHub ♥ Python Namibia</h1>
<h2 id="project_tagline">Introduction to Git & GitHub class project</h2>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<div class="event-logos">
<img src="images/python.png" width="200" />
<img src="images/namibia-flag.png" height="70" />
</div>
<p>
The following attendees successfully completed the <a href="#">Introduction to Git & GitHub</a> course at the
<a href="http://python-namibia.org/">Python Namibia</a> conference on February 2, 2015. Congratulations!
</p>
<ul class="participants-list">
{% for person_hash in site.data.people %}
{% assign person = person_hash[1] %}
<li>
<img src="https://github.com/{{ person.username}}.png" height="80" width="80"/>
<h3><a href="https://github.com/{{ person.username }}">{{ person.name }} </a></h3>
<p>{{ person.why }}</p>
</li>
{% endfor %}
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>
Made with ♥ by <a href="https://github.com/jasonrudolph">@jasonrudolph</a> and <a href="https://github.com/shayfrendt">@shayfrendt</a>
for the <a href="http://python-namibia.org">Python Namibia</a> conference.
</p>
</footer>
</div>
</body>
</html>