Skip to content

Commit b05f36d

Browse files
committed
Added menu in header. Also added member directory
1 parent 7eea76e commit b05f36d

File tree

5 files changed

+61
-2
lines changed

5 files changed

+61
-2
lines changed

_layouts/default.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@
1717
<div class="container">
1818
<h1>PythonPune</h1>
1919
<h2>Pune Pythonistas and their discussions and events.</h2>
20+
<ul>
21+
<li><a href="/meetings">Meetings</a></li>
22+
<li><a href="/blog">Blog</a></li>
23+
<li><a href="/members">Members</a></li>
24+
<li><a href="http://groups.google.com/group/pythonpune">Google Group</a></li>
25+
</ul>
2026
</div>
2127
</header>
2228

members/index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
---
4+
<h1>PythonPune Members</h1>
5+
<table>
6+
<tr>
7+
<th>Name</th>
8+
<th>Github</th>
9+
<th>Bitbucket</th>
10+
<th>Twitter</th>
11+
<th>Blog</th>
12+
<th>Homepage</th>
13+
</tr>
14+
{% for page in site.pages | sort %}
15+
{% capture prefix %}{{page.url | truncate: 15, ''}}{% endcapture%}
16+
{% if prefix == "/members/pages/" %}
17+
<tr>
18+
<td><a href="{{page.url}}">{{page.name}}{% if page.twitter_id %} (@{{page.twitter_id}}){% endif %}</a></td>
19+
{% if page.github_id %}<td><a href="http://github.com/{{page.github_id}}">&#x2713;</a></td>{% else %}<td>&nbsp;</td>{% endif %}
20+
{% if page.bitbucket_id %}<td><a href="http://bitbucket.org/{{page.bitbucket_id}}">&#x2713;</a></td>{% else %}<td>&nbsp;</td>{% endif %}
21+
{% if page.twitter_id %}<td><a href="http://twitter.com/{{page.bitbucket_id}}">&#x2713;</a></td>{% else %}<td>&nbsp;</td>{% endif %}
22+
{% if page.blog %}<td><a href="{{page.blog}}">&#x2713;</a></td>{% else %}<td>&nbsp;</td>{% endif %}
23+
{% if page.homepage %}<td><a href="{{page.homepage}}">&#x2713;</a></td>{% else %}<td>&nbsp;</td>{% endif %}
24+
</tr>
25+
{% endif %}
26+
{% endfor %}
27+
</table>

members/pages/dhananjay.nene.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
layout: default
3+
name: Dhananjay Nene
4+
homepage: http://dhananjaynene.com
5+
blog: http://blog.dhananjaynene.com
6+
twitter_id : dnene
7+
github_id : dnene
8+
bitbucket_id: dnene
9+
---
10+
11+
## Hi
12+
13+
This is just a sample text at the moment

members/pages/saager.mhatre.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
layout: default
3+
name: Saager Mhatre
4+
twitter_id : dexterous
5+
github_id : dexterous
6+
bitbucket_id: dexterous
7+
blog: http://thinkaround.blogspot.com
8+
---

stylesheets/stylesheet.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body {
1212

1313
.container {
1414
width: 90%;
15-
max-width: 600px;
15+
max-width: 900px;
1616
margin: 0 auto;
1717
}
1818

@@ -134,7 +134,7 @@ ul li {
134134
}
135135

136136
ul li:before {
137-
content: ">>";
137+
content: ">>>";
138138
font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
139139
font-size: 13px;
140140
color: #b5e853;
@@ -143,6 +143,11 @@ ul li:before {
143143
line-height: 16px;
144144
}
145145

146+
.container ul li {
147+
display: inline;
148+
padding-left: 40px;
149+
}
150+
146151
blockquote {
147152
color: #aaa;
148153
padding-left: 10px;

0 commit comments

Comments
 (0)