-
Notifications
You must be signed in to change notification settings - Fork 11
/
ipos.html
executable file
·89 lines (53 loc) · 1.62 KB
/
ipos.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
layout: default
title: Education IPOs
---
<h2>Education IPOs <img src="https://s3.amazonaws.com/hackedu/template_stocks.png" height="42" width="42" align="right" style="margin:10px"></h2>
<br />
<p><em>These are the education companies that have gone public since 2015.</p></em>
<hr >
<!-- IPOs2018 -->
<p><strong>2018</strong></p>
{% assign ipos = site.data.ipos.2018 %}
{% assign ipos = ipos | sort:"Name" %}
<!-- Document -->
{% for ipo in ipos %}
<ul>
<li><strong>{{ ipo.Name }}</strong> (<a href="{{ ipo.URL }}">News Link</a>)</li>
</ul>
{% endfor %}
<hr >
<!-- IPOs2016 -->
<!-- IPOs2017 -->
<p><strong>2017</strong></p>
{% assign ipos = site.data.ipos.2017 %}
{% assign ipos = ipos | sort:"Name" %}
<!-- Document -->
{% for ipo in ipos %}
<ul>
<li><strong>{{ ipo.Name }}</strong> (<a href="{{ ipo.URL }}">News Link</a>)</li>
</ul>
{% endfor %}
<hr >
<!-- IPOs2016 -->
<p><strong>2016</strong></p>
{% assign ipos = site.data.ipos.2016 %}
{% assign ipos = ipos | sort:"Name" %}
<!-- Document -->
{% for ipo in ipos %}
<ul>
<li><strong>{{ ipo.Name }}</strong> (<a href="{{ ipo.URL }}">News Link</a>)</li>
</ul>
{% endfor %}
<hr >
<!-- IPOs2015 -->
<p><strong>2015</strong></p>
{% assign ipos = site.data.ipos.2015 %}
{% assign ipos = ipos | sort:"Name" %}
<!-- Document -->
{% for ipo in ipos %}
<ul>
<li><strong>{{ ipo.Name }}</strong> (<a href="{{ ipo.URL }}">News Link</a>)</li>
</ul>
{% endfor %}
<p style="text-align: right; font-size:12px"><em>This data is powered by a GitHub repository: <a href="https://Hack-Education-Data.github.io/ipos">Hack-Education-Data/ipos</a>. Last updated 30 September 2018</em></p>