-
Notifications
You must be signed in to change notification settings - Fork 0
/
texts.html
45 lines (34 loc) · 1.08 KB
/
texts.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
---
layout: default
title: "Texts and Lecture Notes"
author_profile: true
---
<h1> Texts and Lecture Notes </h1>
<div>
This page is for pedagogical texts. If you are searching for my <em>research papers</em>, please see <a href="https://arxiv.org/a/0000-0002-7907-7611.html">my arXiv user page</a>, which updates automatically. For a summary of my work see <a href="https://darsakthi.github.io/research/">/research</a>.
</div>
<div>
</div>
<div>
{%- if site.texts.size > 0 -%}
<ul class="post-list">
{%- for text in site.texts reversed -%}
<li>
<h3>
{%- assign date_format = site.minima.date_format | default: "%-d %b %Y" -%}
<span class="post-meta">{{ text.date | date: date_format }}</span>
<a class="post-link" href="{{ text.url | relative_url }}">
{{ text.title | escape }}
</a>
<h3>
<h4>
{%- if site.show_excerpts -%}
{{ text.excerpt | truncatewords: 20 }}
{%- endif -%}
</h4>
</li>
{%- endfor -%}
</ul>
{%- endif -%}
</div>