forked from alshedivat/al-folio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (76 loc) · 2.87 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
80
81
82
83
84
85
86
87
---
layout: default
title: research
pagination:
enabled: true
collection: posts
permalink: /page/:num/
per_page: 3
sort_field: date
sort_reverse: true
trail:
before: 1 # The number of links before the current page
after: 3 # The number of links after the current page
---
<div class="post">
<div class="header-bar">
<h1>{{ site.blog_name }}</h1>
<!-- <h2>{{ site.blog_description }}</h2> -->
<div style="text-align:center;">
<img src="theme.png" style="max-width: 100%; margin: 0 auto;" alt="Research Theme">
</div>
<!-- <ul>
<li><b>University of Georgia</b>, Department of Statistics, Athens, Georgia, USA
<ul>
<li>Ph.D. in Statistics, Aug 2013 – May 2019</li>
<li>Dissertation: Sampling for Streaming Data</li>
<li>Advisors: Ping Ma and T.N. Sriram</li>
<li>Focus: Sampling, Time Series, Big Data, Distributed and Decentralized Computing, Spatial Statistics, and Engineering Statistics.</li>
</ul>
<li><b>Georgia Institute of Technology</b>, <br>H. Milton School of Industrial and Systems Engineering, Atlanta, Georgia, USA</li>
<ul>
<li>M.S. in Statistics, Aug 2011 – May 2013</li>
</ul>
<li><b>Xiamen University</b>, Xiamen, Fujian, China</li>
<ul>
<li>B.S. in Physics, Aug 2007 – Jul 2011</li>
<li>B.S. in Quantitative Finance, Aug 2007 – Jul 2011</li>
</ul>
</ul> -->
</div>
<ul class="post-list">
{% for post in paginator.posts %}
{% assign read_time = post.content | number_of_words | divided_by: 180 | plus: 1 %}
{% assign year = post.date | date: "%Y" %}
{% assign tags = post.tags | join: "" %}
{% assign categories = post.categories | join: "" %}
<li>
<h3><a class="post-title" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h3>
<p>{{ post.description }}</p>
<p class="post-meta"> {{read_time}} min read ·
{{ post.date | date: '%B %-d, %Y' }}
</p>
<p class="post-tags">
<a href="{{ year | prepend: '/blog/' | prepend: site.baseurl}}">
<i class="fas fa-calendar fa-sm"></i> {{ year }} </a>
{% if tags != "" %}
·
{% for tag in post.tags %}
<a href="{{ tag | prepend: '/blog/tag/' | prepend: site.baseurl}}">
<i class="fas fa-hashtag fa-sm"></i> {{ tag }}</a>
{% endfor %}
{% endif %}
{% if categories != "" %}
·
{% for category in post.categories %}
<a href="{{ category | prepend: '/blog/category/' | prepend: site.baseurl}}">
<i class="fas fa-tag fa-sm"></i> {{ category }}</a>
{% endfor %}
{% endif %}
</p>
</li>
{% endfor %}
</ul>
{% include pagination.html %}
</div>