-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 1.78 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
---
layout: post-index
title: Generally An Information Arsenal
tags: [math, blog, blog posts, physics, development, mathematics, science, software, computer, social, casual, GAIA]
comments: false
image:
feature: landing-header.svg
---
{% for post in paginator.posts %}
{% if post.unindex %}
{% continue %}
{% endif %}
<div class="post-entry">
<div class="post-entry-img-meta-container">
{% if post.series %}
<a href="{{ site.url }}/series#{{post.series.name}}-ref" class="post-entry-series-anchor">
<div class="post-entry-series">
<span>{{post.series.name}} Series | Part {{post.series.part}}</span>
</div>
</a>
{% endif %}
{% if post.image.feature %}
<a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">
<img class="post-entry-image" src="{{ site.url }}/images/{{ post.image.feature }}" alt="{{ post.title }}">
</a>
{% endif %}
<div class="post-entry-meta">
<span class="entry-date date published updated"><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: "%B %d, %Y" }}</time></span>
{% if site.reading_time %}
<span class="entry-reading-time">
<i class="fa fa-clock-o"></i>
{% if page.reading_time_override %}
Reading time ~ {{page.reading_time_override}} minutes
{% else %}
{% include read-time-index.html %}
{% endif %}
</span><!-- /.entry-reading-time -->
{% endif %}
</div>
</div>
<div class="post-entry-title">
<h2>
<a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a>
</h2>
</div>
<div class="post-entry-description">
{% if post.description %}{{ post.description }}{% else %}{{ post.content | strip_html | strip_newlines | truncate: 140 }}{% endif %}
</div>
</div>
{% endfor %}
{% include pagination.html %}