-
Notifications
You must be signed in to change notification settings - Fork 33
/
index.html
51 lines (43 loc) · 1.47 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
---
layout: default
---
<h1>PythonPune</h1>
<ul>
<li><a href="/pages/welcome.html">Message</a> for first time visitors to the site</li>
</ul>
<h2>Projects</h2>
<ul>
<li>Pune Startup Directory (Proposed group project)</li>
</ul>
<h2>Recent Meetings</h2>
<ul>
{% for post in site.posts %}
{% if post.categories contains 'meeting-notes' %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Recent Blog Posts</h2>
<ul>
{% for post in site.posts %}
{% if post.categories contains 'blog' %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Recent Discussions</h2>
<iframe id="forum_embed"
src="javascript:void(0)"
scrolling="no"
frameborder="0"
width="900"
height="700">
</iframe>
<script type="text/javascript">
function page_callback() {
document.getElementById("forum_embed").src =
"https://groups.google.com/forum/embed/?place=forum/pythonpune" +
"&theme=default&showtabs=false&hideforumtitle=true&showpopout=true" +
encodeURIComponent(window.location.href);
}
</script>