Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
int-prob-code/publications.html
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
43 lines (39 sloc)
1.37 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: Publications | |
layout: default | |
nav_order: 9 | |
nav_id: Publications | |
redirect_from: | |
- /tag/publication/ | |
--- | |
<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> |