-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (69 loc) · 2.75 KB
/
index.html
File metadata and controls
83 lines (69 loc) · 2.75 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
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
---
layout: default
title: Home
---
<!-- header -->
<section class="hero is-light">
<div class="hero-body">
<div class="container">
<h1 class="title is-1">
<span class="has-text-vgl-primary">VGL</span>
<span class="has-text-vgl-inverted">@</span>
<span class="has-text-vgl-primary">USF</span>
</h1>
<h2 class="subtitle is-3">
Visualization and Graphics Lab
</h2>
<p>
We are a group of faculty and students that discuss and collaborate on research in the data visualization and graphics fields. We also teach several classes, sponsor projects and directed studies, and host speakers.
<br/>
<br/>
<a class="button is-medium is-primary" href="{{ "/about.html" | relative_url }}">
Learn More
<i class="fas fa-angle-double-right"></i>
</a>
</p>
</div>
</div>
</section>
<!-- main -->
<section class="section">
<div class="container">
<div class="content">
<h2>Recent Papers</h2>
{% assign papers = site.data.papers.publications | sort: 'date' | reverse %}
<ul class="fa-ul papers">
{% for paper in papers limit:3 %}
<li>
<span class="fa-li"><i class="fas fa-file-alt"></i></span>
{% if paper.authors.size <= 2 %}{{ paper.authors | join: ' and ' }}{% else %}{% for author in paper.authors %}{% if forloop.last %}and {% endif %}{{ author }}{% unless forloop.last %}, {% endunless %}{% endfor %}{% endif %}, <q><strong>{{ paper.title }}</strong></q>, in {{ paper.cite }}, {% if paper.pages %}pp {{ paper.pages | join: '–' }}, {% endif %}{{ paper.date | date: "%B" }} {{ paper.date | date: "%Y" }}.{% if paper.links %}{% for link in paper.links %} {% if link.link %}<a href="{{ link.link }}">{% endif %}<i class="{{ link.icon }}"></i>{% if link.link %}</a>{% endif %}{% endfor %}{% endif %}
</li>
{% endfor %}
</ul>
<p>
<a href="{{ "research.html" | relative_url }}" class="button is-light">
More Research
<i class="fas fa-angle-double-right"></i>
</a>
</p>
<h1>Latest Posts</h1>
<ul class="fa-ul">
{% for post in site.posts limit:5 %}
<li>
<p>
<span class="fa-li"><i class="{{ post.icon }}"></i></span>
{{ post.author }}, <strong><a href="{{ post.url | relative_url }}">{{ post.title }}</a></strong>, <em>posted on</em> {{ post.date | date: "%a %b %d %Y" }}. <a href="{{ post.url | relative_url }}">Read <i class="fas fa-angle-double-right"></i></a>
</p>
</li>
{% endfor %}
</ul>
<br/>
<p>
<a href="{{ "/blog" | relative_url }}" class="button is-light">
More Posts
<i class="fas fa-angle-double-right"></i>
</a>
</p>
</div>
</div>
</section>