-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (70 loc) · 2.18 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
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
---
layout: page
title:
subtitle:
use-site-title: true
fb-img:
---
<center>
<img src="{{ site.baseurl }}/assets/img/banner.png" style="border-radius: 15px;">
</center>
<br>
<center>
<h1><em>Code, Practices, and People</em></h1>
</center>
<br>
{% assign callouts=site.data.callouts %}
<div class="grid grid-col-3">
{% for callout in callouts.items %}
<div class="grid-item">
<div class="grid-item-inside" style="background-color: #eeeeee;">
<h3 class="grid-item-title line-left">
{{ callout.title }}
</h3>
<div class="grid-item-content">
<p>{% if callout.subtitle %}{{ callout.subtitle | newline_to_br }}{% endif %}
{% if callout.description %}{{ callout.description | newline_to_br }}{% endif %}
</p>
</div>
<div class="grid-item-buttons">
{% if callout.link %}
<a href="{{ callout.link | relative_url }}" style="color: var(--info); visited: var(--info); hover: var(--infodk);">
{{ callout.link_name }}</a>{% endif %}
</div>
</div>
</div>{% endfor %}
</div>
<br><br>
<div class="sectionheader">
<center>
<h2 class="sectionheader"> Conference Sponsors </h2>
</center>
</div>
<div>
<br>
<a href="https://sloan.org/">
<img src="{{ site.baseurl }}/assets/img/sponsor-logos/sloan.png"
style="display: block; margin-left: auto; margin-right: auto; width: 20%;"
alt="Sloan Foundation logo">
</a>
</div>
<br><br>
<div class="sectionheader">
<center>
<h2 class="sectionheader"> US-RSE Organizational Members </h2>
</center>
</div>
<div>
<center>
{% assign orgs = site.data.org-members %}
{%- for item in orgs -%}
<a href="{{ item.url }}"><img src="{{ site.baseurl }}/assets/img/org-logos/{{ item.figure }}"
{% if item.background -%}
style=" margin-left: auto; margin-right: auto; width: 20%; padding: 10px; background-color: {{ item.background }}"
{%- else -%}
style="margin-left: auto; margin-right: auto; width: 20%; padding: 10px; "
{%- endif -%}
alt="{{ item.name }} logo"></a>
{%- endfor -%}
</center>
</div>