-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (44 loc) · 2.15 KB
/
index.html
File metadata and controls
48 lines (44 loc) · 2.15 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
---
layout: default
title: Home
---
<div class="intro">
<div style="float: right;"><img style="max-width:250px; margin: 10px;" src="https://raw.githubusercontent.com/visualizingthefuture/visualizingthefuture.github.io/master/images/bowtie8d.png" alt="bowtie logo" id="logo"/></div>
<div style="margin-right: 300px;">
<h1 class="introTitle">Visualizing the Future</h1>
<p>Visualizing the Future is an IMLS National Forum Grant to develop a literacy-based instructional and research agenda for library and information professionals with the aim to create a community of praxis focused on data visualization.</p>
</div>
<div style="clear: both;">
<p>This grant aims to create a diverse community that will advance data visualization instruction and use beyond hands-on, technology-based tutorials toward a nuanced, critical understanding of visualization as a research product and form of expression. As part of this grant we are seeking applications for a cohort of fellows to: carry out research related to visualization, attend two in-person meetings over the next two years, and help in the development and dissemination of a framework for data visualization support in libraries and related institutions.</p>
</div>
</div>
<div class="posts">
<h2>Updates:</h2>
{% for post in paginator.posts %}
<div class="post">
<h3 class="post-title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h3>
<span class="post-date">{{ post.date | date_to_string }}</span>
{{ post.excerpt }}
</div>
{% endfor %}
</div>
<div class="pagination">
{% if paginator.next_page %}
<a class="pagination-item older" href="{{ site.baseurl }}page{{paginator.next_page}}">Older</a>
{% else %}
<span class="pagination-item older">Older</span>
{% endif %}
{% if paginator.previous_page %}
{% if paginator.page == 2 %}
<a class="pagination-item newer" href="{{ site.baseurl }}">Newer</a>
{% else %}
<a class="pagination-item newer" href="{{ site.baseurl }}page{{paginator.previous_page}}">Newer</a>
{% endif %}
{% else %}
<span class="pagination-item newer">Newer</span>
{% endif %}
</div>