-
Notifications
You must be signed in to change notification settings - Fork 315
/
member.html
51 lines (40 loc) · 1019 Bytes
/
member.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
---
layout: default
---
{% capture floatcontent %}
{% include portrait.html lookup=page.slug %}
<div>
{% for link in page.links %}
{% assign key = link[0] %}
{% assign value = link[1] %}
{% include button.html type=key link=value style="bare" %}<br>
{% endfor %}
</div>
{% endcapture %}
{% include float.html content=floatcontent %}
{{ content }}
{% assign aliases = page.aliases
| default: page.name
| default: page.title
| join: ","
| split: ","
| array_filter
%}
{% capture search -%}
research/?search={% for alias in aliases %}"{{ alias }}" {% endfor %}
{%- endcapture %}
<p class="center">
<a href="{{ search | relative_url | uri_escape }}">
Search for {{ page.name | default: page.title }}'s papers on the Research page
</a>
</p>
{% capture search -%}
blog/?search={{ page.name }}
{%- endcapture %}
<!--
<p class="center">
<a href="{{ search | relative_url | uri_escape }}">
See {{ page.name | default: page.title }}'s posts on the Blog page
</a>
</p>
-->