Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
Latest commit
51 lines (43 loc) · 1.47 KB
/
Copy pathindex.html
File metadata and controls
51 lines (43 loc) · 1.47 KB
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><ahref="/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><ahref="{{ 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><ahref="{{ post.url }}">{{ post.title }}</a></li>
{% endif %}
{% endfor %}
</ul>
<h2>Recent Discussions</h2>
<iframeid="forum_embed"
src="javascript:void(0)"
scrolling="no"
frameborder="0"
width="900"
height="700">
</iframe>
<scripttype="text/javascript">
functionpage_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>