-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
54 lines (48 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
51
52
53
54
---
layout: default
title: Welcome
---
<div style="float:left; margin-right:20px;">
<img style="max-height:450px; border:1px solid black" src="/assets/Colin Grudzien_2020_profile.jpg" alt="Picture of Colin Grudzien">
</div>
<h1 class="page-title">
Welcome
</h1>
<p>
I am a Senior Data Assimilation Research Scientist at the
<a href="https://cw3e.ucsd.edu/" target="blank">Center for Western Weather and Water Extremes (CW3E)</a>
of the Scripps Institution of Oceanography at the University of California San Diego.
This is the home for my professional and creative interests.
Please see the links in the menu for details about my research and other activities. See news and announcements below.
</p>
<br>
<div style="float:left">
<h2>News and announcements</h2>
<div class="posts">
{% 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.content }}
</div>
{% endfor %}
</div>
{% if paginator.total_pages > 1 %}
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path | prepend: site.baseurl | replace: '//', '/' }}"class="pagination-item newer">Newer announcements</a>
{% else %}
<span class="pagination-item newer">Newer announcements</span>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path | prepend: site.baseurl | replace: '//', '/' }}" class="pagination-item older">Older announcements</a>
{% else %}
<span class="pagination-item older">Older announcements</span>
{% endif %}
</div>
{% endif %}
</div>