-
Notifications
You must be signed in to change notification settings - Fork 7
/
research.html
45 lines (44 loc) · 1.74 KB
/
research.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
---
layout: page
title: Research
subtitle: Papers and Publications
---
{% capture section_content %}
<ul class="list-unstyled articles-list">
{% for article in site.data.publications %}
<li>
<a href="{{ site.baseurl }}/documents/{{ article.filename }}" target="_blank" class="article-title">{{ article.title }}</a>
<div class="article-subheading">
{{ article.authors }}. ({{ article.year }}).
{% if article.external_link %}<a href="{{ article.external_link }}" target="_blank">{% endif %}
{{ article.journal }}.
{% if article.external_link %}</a>{% endif %}
</div>
{% if article.abstract %}
<blockquote>{{ article.abstract | markdownify }}</blockquote>
{% endif %}
</li>
{% endfor %}
</ul>
{% endcapture %}
{% include section.html %}
{% capture section_content %}
<div class="col-sm-3 hidden-xs vcenter">
<img src="{{ site.baseurl }}/assets/img/jabberwocky.jpg" class="img-responsive"
alt="The Jabberwock, as illustrated by John Tenniel, 1871">
</div>
<div class="col-sm-9 col-xs-12 vcenter">
<p>Our "FRABJOUS CS" (Framing a
Rigorous Approach to Beauty and Joy for Outreach to Underrepresented Students in Computing at Scale) NSF-funded project:
<a href="{{ site.baseurl }}/documents/CE21-BYOBSummary.pdf"><strong>one-page summary</strong></a> and
<a href="{{ site.baseurl }}/documents/CE21-BYOBDescription.pdf"><strong>full proposal</strong></a>.
</p>
<p><small><em>
"And, has thou slain the Jabberwock?<br />
Come to my arms, my beamish boy!<br />
O frabjous day! Callooh! Callay!"<br />
He chortled in his joy.
</em></small></p>
</div>
{% endcapture %}
{% include section.html %}