-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalec.html
More file actions
41 lines (27 loc) · 1.27 KB
/
alec.html
File metadata and controls
41 lines (27 loc) · 1.27 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
---
layout: default
title: ALEC and Education
---
<h2>ALEC and Education</h2>
<br />
<p><em>These are the education- and education-technology-related organizations involved (currently and previously) with ALEC:</p></em>
<hr />
<!-- ALEC Organizations -->
{% assign organizations = site.data.alec.organizations %}
{% assign organizations = organizations | sort:"Name" %}
<!-- Document -->
{% for organization in organizations %}
<ul>
<li><strong>{{ organization.Name }}</strong> (Membership Status: {{ organization.Status }})</li>
</ul>
{% endfor %}
<p><em>These are the people involved with ALEC's education initiatives:</p></em>
<!-- People -->
{% assign people = site.data.alec.people %}
{% assign people = people | sort:"Name" %}
<!-- Document -->
{% for person in people %}
<p><strong>{{ person.Name }}</strong>, {{ person.Affiliation }}</p>
<p> Role at ALEC: {{ person.Role }} (Membership Status: {{ person.Status }})</p>
{% endfor %}
<p style="text-align: right; font-size:12px"><em>This Web page is powered by a GitHub repository: <a href="https://github.com/Hack-Education-Data/alec">Hack-Education-Data/alec</a>. The data is taking from <a href="http://www.sourcewatch.org/index.php/ALEC_Corporations">sourcewatch.org</a> and the ALEC website. Last updated: 20 July, 2017</em></p>