Skip to content

Commit 845d275

Browse files
committed
Added index.html (overlooked in the earlier commit)
1 parent 48d0c4c commit 845d275

File tree

1 file changed

+17
-45
lines changed

1 file changed

+17
-45
lines changed

index.html

Lines changed: 17 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,6 @@
1-
<!DOCTYPE html>
2-
<html>
3-
<head>
4-
<meta charset='utf-8'>
5-
<meta http-equiv="X-UA-Compatible" content="chrome=1">
6-
7-
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
8-
<link rel="stylesheet" type="text/css" href="stylesheets/pygment_trac.css" media="screen" />
9-
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
10-
11-
<title>PythonPune by pythonpune</title>
12-
</head>
13-
14-
<body>
15-
16-
<header>
17-
<div class="container">
18-
<h1>PythonPune</h1>
19-
<h2>Pune Pythonistas and their discussions and events.</h2>
20-
21-
<section id="downloads">
22-
<a href="https://github.com/pythonpune" class="btn btn-github"><span class="icon"></span>View on GitHub</a>
23-
</section>
24-
</div>
25-
</header>
26-
27-
<div class="container">
28-
<section id="main_content">
1+
---
2+
layout: default
3+
---
294
<h1>PythonPune</h1>
305

316
<h2>Projects</h2>
@@ -34,10 +9,22 @@ <h2>Projects</h2>
349
<li>Pune Startup Directory (Proposed group project)</li>
3510
</ul>
3611

37-
<h2>Meetings</h2>
12+
<h2>Recent Meetings</h2>
13+
<ul>
14+
{% for post in site.posts %}
15+
{% if post.categories contains 'meeting-notes' %}
16+
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
17+
{% endif %}
18+
{% endfor %}
19+
</ul>
3820

21+
<h2>Recent Blog Posts</h2>
3922
<ul>
40-
<li>December 7, 2012</li>
23+
{% for post in site.posts %}
24+
{% if post.categories contains 'blog' %}
25+
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
26+
{% endif %}
27+
{% endfor %}
4128
</ul>
4229

4330
<h2>Recent Discussions</h2>
@@ -49,18 +36,3 @@ <h2>Recent Discussions</h2>
4936
width="900"
5037
height="700">
5138
</iframe>
52-
53-
</section>
54-
<section id="footer">
55-
<p><em>Page maintained by <a href="https://github.com/dnene" class="user-mention">@dnene</a>. Contact him for corrections / comments / suggestions </em></p>
56-
</section>
57-
</div>
58-
59-
</body>
60-
<script type="text/javascript">
61-
document.getElementById("forum_embed").src =
62-
"https://groups.google.com/forum/embed/?place=forum/pythonpune" +
63-
"&theme=default&showtabs=false&hideforumtitle=true&showpopout=true" +
64-
encodeURIComponent(window.location.href);
65-
</script>
66-
</html>

0 commit comments

Comments
 (0)