Skip to content

Commit a273eb9

Browse files
committed
Basic scripting of data tables
1 parent afed09f commit a273eb9

12 files changed

+263
-19
lines changed

ContactUs.md

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
layout: default
3+
title: SIGPLAN Executive Committee 2012-2015
4+
---
5+
6+
SIGPLAN is run by its Executive Committee composed of members elected every 3 years,by the members of ACM SIGPLAN. Ex-officio members, which include the past chair and the SIGPLAN editors, are also involved in directing SIGPLAN.
7+
8+
9+
#### Elected members
10+
- Chair: [Jan Vitek](http://www.cs.purdue.edu/homes/jv/)
11+
- Vice Chair: [Jeremy Gibbons](http://www.cs.ox.ac.uk/jeremy.gibbons/)
12+
- Secretary: [Andrew P. Black](http://web.cecs.pdx.edu/~black/)
13+
- Treasurer:
14+
[Cristina Lopes](http://www.ics.uci.edu/~lopes/)
15+
- Members at Large:
16+
- [Derek Dreyer](http://www.mpi-sws.org/~dreyer/)
17+
- [Sue Eisenbach](http://www-dse.doc.ic.ac.uk/cgi-bin/moin.cgi/sue)
18+
- [Mike Hind](http://researcher.watson.ibm.com/researcher/view.php?person=us-hindm)
19+
- [Julia Lawall](http://pagesperso-systeme.lip6.fr/Julia.Lawall/)
20+
- [Norman Ramsey](http://www.cs.tufts.edu/~nr/)
21+
22+
#### Ex-Officio Members
23+
- Past Chair:
24+
[Philip Wadler](http://homepages.inf.ed.ac.uk/wadler/)
25+
- ACM Program Director:
26+
[Fran Spinola](mailto:[email protected])
27+
- Editors of SIGPLAN Newsletters:
28+
- SIGPLAN Information Director: [Andy Gill](mailto:[email protected]?subject=SIGPLAN%20Web%20Pages)
29+
- SIGPLAN Notices: [Andy Gill](http://www.ittc.ku.edu/csdl/fpg/Users/AndyGill)
30+
- FORTRAN Forum: [Ian Chivers](mailto:[email protected])
31+
- ACM TOPLAS Editors:
32+
- [Jens Palsberg](http://www.cs.ucla.edu/~palsberg/)
33+
- Steering Committee Chairs
34+
- FOOL: [Jonathan Aldrich](http://www.cs.cmu.edu/~aldrich)
35+
- SPLASH: [William Cook](mailto:[email protected])
36+
- ICFP: [Manuel Chakravarty](mailto:[email protected]) and Zhenjiang Hu
37+
- POPL: [John Field](mailto:[email protected])
38+
- PLDI: [Kathleen Fisher](http://www.cs.tufts.edu/~kfisher)
39+
- LCTES: [Zhiyuan Li](mailto:[email protected])
40+
- ISMM: [Jan Vitek](mailto:[email protected])
41+
- PPOPP: [Calin Cascaval](mailto:[email protected])
42+
- Haskell: [Stephanie Weirich](mailto:[email protected])
43+
- ASPLOS: [David Wood](mailto:[email protected])
44+
- VEE: [Tony Hosking](mailto:[email protected])
45+
- GPCE: [Julia Lawall](mailto:[email protected])
46+
- DLS: [Robert Hirschfeld](mailto:[email protected])
47+
- SIGAPL: [Guy Larocque](mailto:[email protected])

_config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ safe: true
22
lsi: false
33
pygments: true
44
source: .
5-

_data/ExecutiveCommittee.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Elected Members:
2+
- Chair: "[Jan Vitek](https://www.cs.purdue.edu/homes/jv/)"
3+
- Vice Chair: "[Jeremy Gibbons]()"
4+
- Secretary: Andrew P. Black
5+
- Treasurer: Cristina Lopes
6+
- Members at Large:
7+
- Derek Dreyer
8+
- Sue Eisenbach
9+
- Mike Hind
10+
- Julia Lawall
11+
- Norman Ramsey
12+
- Past Chair: Philip Wadler

_data/Links.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Primary Menu:
2+
# - [Home, "/"]
3+
# - {page: Home, link: "/index" }
4+
# - "[Awards](/Awards/)"
5+
# - "[Conferences](/Conferences/)"
6+
# - {page: Resources, link: "/Resources" }
7+
- Communications of ACM Research Highlights
8+
- Membership
9+
- Student Information
10+
- Publications
11+
- Announcements
12+
13+
14+
Key Links:
15+
- SIGPLAN Officers </ContactUs>
16+
- Professional Activities Committee </Activities>
17+
- SIGPLAN Education Board Blog
18+
- Open Meeting Presentations
19+
- SIGPLAN By-laws
20+
- Annual Reports
21+
- SIGPLAN Sponsors
22+

_data/test.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Key Links:
2+
- [SIGPLAN Officers, ContactUs]
3+
- Professional Activities Committee
4+
- SIGPLAN Education Board Blog
5+
- Open Meeting Presentations
6+
- [SIGPLAN By-laws, Reports]
7+
- [Annual Reports, Reports]
8+
national:
9+
- New York Mets
10+
- Chicago Cubs
11+
- Atlanta Braves
12+
- "[POPL 2013](http://popl.mpi-sws.org/2013/) (Rome, Italy)"

_includes/committee.liquid

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<h4>{{include.committee}}</h4>
2+
3+
<ul>
4+
{% for m1 in include.data.[include.committee] %}
5+
<li>
6+
{% for m2 in m1 %}
7+
<b> {{ m2[0] }}: </b>
8+
{% if m2[1] contains " " %}
9+
{% assign tmp = m2[1] %}{% include link.liquid data=tmp %}
10+
{% else %}
11+
<ul>
12+
{% for m3 in m2[1] %}
13+
<li>
14+
{% include link.liquid data=m3 %}
15+
</li>
16+
{% endfor %}
17+
</ul>
18+
{% endif %}
19+
{% endfor %}
20+
</li>
21+
{% endfor %}
22+
</ul>
23+

_includes/header.html

+3-11
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,12 @@
66
<meta name="author" content="">
77
<link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
88

9-
<title>Static Top Navbar Example for Bootstrap</title>
9+
<title>{{ page.title }}</title>
1010

1111
<!-- Bootstrap core CSS -->
12-
<link href="../css/bootstrap.min.css" rel="stylesheet">
12+
<link href="/css/bootstrap.min.css" rel="stylesheet">
1313

1414
<!-- Custom styles for this template -->
15-
<link href="../css/custom.css" rel="stylesheet">
15+
<link href="/css/custom.css" rel="stylesheet">
1616

17-
<!-- Just for debugging purposes. Don't actually copy this line! -->
18-
<!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
19-
20-
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
21-
<!--[if lt IE 9]>
22-
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
23-
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
24-
<![endif]-->
2517
</head>

_includes/link.liquid

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{% assign tmp = include.data | remove: '>' | split: "<" %}
2+
{% if tmp.size == 2 %}
3+
<a href="{{tmp[1]}}">{{tmp[0]}}</a>
4+
{% else %}
5+
{{include.data}}
6+
{% endif %}

_includes/links.liquid

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<h3>{{include.links}}</h3>
2+
3+
<ul>
4+
{% for m1 in include.data.[include.links] %}
5+
<li>
6+
{% for m2 in m1 %}
7+
{% include link.liquid data=m2 %}
8+
{% endfor %}
9+
</li>
10+
{% endfor %}
11+
</ul>
12+

_layouts/home.html

+122
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,122 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
{% include header.html %}
4+
<body>
5+
{% include navbar.html %}
6+
7+
<div class="container">
8+
9+
<div class="row">
10+
<div class="col-md-11">
11+
12+
<h3>Special Interest Group on Programming Languages</h3>
13+
<p>SIGPLAN is a Special Interest Group of ACM that focuses on Programming Languages. In particular, SIGPLAN explores the design, implementation, theory, and efficient use of programming languages and associated tools. Its members are programming language users, developers, implementers, theoreticians, researchers and educators</p>
14+
</div>
15+
</div>
16+
17+
<hr class="featurette-divider">
18+
19+
20+
<div class="row">
21+
22+
<div class="col-md-4">
23+
<h3>Key Links</h3>
24+
<ul>
25+
<li>SIGPLAN Officers</li>
26+
<li>Professional Activities Committee</li>
27+
<li>SIGPLAN Education Board Blog</li>
28+
<li>Open Meeting Presentations</li>
29+
<li>SIGPLAN By-laws</li>
30+
<li>Annual Reports</li>
31+
<li>SIGPLAN Sponsors</li>
32+
</ul>
33+
</div>
34+
35+
<div class="col-md-4">
36+
<h3>Conference Information</h3>
37+
<ul>
38+
<li>SIGPLAN Officers</li>
39+
<li>Professional Activities Committee</li>
40+
<li>SIGPLAN Education Board Blog</li>
41+
<li>Open Meeting Presentations</li>
42+
<li>SIGPLAN By-laws</li>
43+
<li>Annual Reports</li>
44+
<li>SIGPLAN Sponsors</li>
45+
</ul>
46+
</div>
47+
48+
<div class="col-md-4">
49+
<h3>SIGPLAN Sponsored Conferences</h3>
50+
<ul>
51+
<li>SIGPLAN Officers</li>
52+
<li>Professional Activities Committee</li>
53+
<li>SIGPLAN Education Board Blog</li>
54+
<li>Open Meeting Presentations</li>
55+
<li>SIGPLAN By-laws</li>
56+
<li>Annual Reports</li>
57+
<li>SIGPLAN Sponsors</li>
58+
</ul>
59+
</div>
60+
</div>
61+
62+
<hr class="featurette-divider">
63+
64+
65+
<div class="col-md-4">
66+
<h3>SIGPLAN Awards Panel</h3>
67+
<ul>
68+
<li>SIGPLAN Officers</li>
69+
<li>Professional Activities Committee</li>
70+
<li>SIGPLAN Education Board Blog</li>
71+
<li>Open Meeting Presentations</li>
72+
<li>SIGPLAN By-laws</li>
73+
<li>Annual Reports</li>
74+
<li>SIGPLAN Sponsors</li>
75+
</ul>
76+
</div>
77+
78+
<div class="col-md-4">
79+
<h3>Recent SIGPLAN Award Recipients</h3>
80+
<ul>
81+
<li>SIGPLAN Officers</li>
82+
<li>Professional Activities Committee</li>
83+
<li>SIGPLAN Education Board Blog</li>
84+
<li>Open Meeting Presentations</li>
85+
<li>SIGPLAN By-laws</li>
86+
<li>Annual Reports</li>
87+
<li>SIGPLAN Sponsors</li>
88+
</ul>
89+
</div>
90+
91+
<div class="col-md-4">
92+
<h3>ACM Publications</h3>
93+
<ul>
94+
<li>SIGPLAN Officers</li>
95+
<li>Professional Activities Committee</li>
96+
<li>SIGPLAN Education Board Blog</li>
97+
<li>Open Meeting Presentations</li>
98+
<li>SIGPLAN By-laws</li>
99+
<li>Annual Reports</li>
100+
<li>SIGPLAN Sponsors</li>
101+
</ul>
102+
</div>
103+
</div>
104+
105+
</div>
106+
107+
{{site.data.ExecutiveCommittee}}
108+
109+
X
110+
<HR>
111+
{% include committee.liquid data=site.data.ExecutiveCommittee committee="Elected Members" %}
112+
<HR>
113+
{% include links.liquid data=site.data.Links links="Key Links" %}
114+
<HR>
115+
{% include links.liquid data=site.data.Links links="Primary Menu" %}
116+
<HR>
117+
118+
{{ "[Hello](World)" | markdownify }}
119+
120+
{% include footer.html %}
121+
</body>
122+
</html>

index.html

-7
This file was deleted.

index.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: home
3+
title: SIGPLAN
4+
---

0 commit comments

Comments
 (0)