forked from ics-portfolios/ics-portfolios.github.io
-
Notifications
You must be signed in to change notification settings - Fork 334
/
index.html
50 lines (42 loc) · 1.7 KB
/
index.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
---
layout: default
---
<div style="height: 100%; margin-top: -75px" class="ui middle aligned grid ">
<div class="column">
<div style="position: relative; top: 75px; z-index: 1; background-color: darkgreen;"
class="ui fluid centered small square image">
<img width="100px" src="{{ site.baseurl}}/images/MIS.jpg">
</div>
<div style="max-width: 500px; padding-top: 75px; margin-top: 0px; padding-bottom: 20px"
class="ui fluid centered card">
<div class="center aligned content">
<span class="header">MIS Portfolios</span>
<div class="meta">
<span class="date"></span>
</div>
<div class="left aligned description">
A directory of undergraduate and alumni professional portfolios in the
<a href="http://shidler.hawaii.edu/itm/about">Department of Information Technology Management</a> and
<a href="http://shidler.hawaii.edu">Shidler College of Business</a>
at the
<a href="http://www.hawaii.edu">University of Hawaii</a>.
</div>
</div>
<div class="ui center aligned four column stackable grid content">
<div class="column">
<a href="{{ site.baseurl}}/all">
<button class="ui small green fluid button">(<span id=num_members_id>0</span>) Members</button>
<script>
var members = {{site.data.members | jsonify}}
let num_members = 0;
for(let group in members) {
num_members += members[group].length;
}
document.getElementById("num_members_id").innerHTML = num_members;
</script>
</a>
</div>
</div>
</div>
</div>
</div>