-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpublications.html
More file actions
47 lines (42 loc) · 1.48 KB
/
publications.html
File metadata and controls
47 lines (42 loc) · 1.48 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
---
title: Publications
layout: default
nav_order: 9
nav_id: Publications
redirect_from:
- /tag/publication/
---
<div class="alert alert-warning" role="alert">
<strong>Note:</strong> This page is no longer being updated.
</div>
<h2>All publications by FRG participants since January 2017<h2>
<h3>(tag <a href="{{site.url }}/tag/NSF_FRG" title="View posts tagged with "NSF_FRG""
class="btn btn-secondary" role="button">NSF_FRG</a> = <span style="background-color:{{site.hlcolor}}">acknowledges the FRG grant support</span>)</h3>
<hr>
<img src="{{site.url}}/img/publ.jpg" style="width:30%" align="right" alt="Drawing on the whiteboard">
<ol reversed>
{% for post in site.posts %}
{% for tag in post.tags %}
{% if tag == "publication" %}
<li>
[<i>{{ post.date | date: "%B %-d, %Y" }}</i>]
{% for tag in post.tags %}
{% if tag != "publication" %}
<a href="{{site.url }}/tag/{{ tag }}" title="View posts tagged with "{{ tag }}""
class="btn btn-secondary" role="button">{{ tag }}</a>{% if forloop.last != true %}{% endif %}{% endif %}
{% endfor %}
<b><a href="{{site.url }}{{ post.url }}">{{ post.title }}</a></b>
<table>
<tr>
<td style="padding-left:20px">
<p><div {%if post.tags contains 'NSF_FRG' %}style="background-color:{{site.hlcolor}}"{%endif%}>{{ post.content | markdownify }}</div></p>
</td>
</tr>
</table>
</li>
{% endif %}
{% endfor %}
{% endfor %}
</ol>