|
| 1 | +<!doctype html> |
| 2 | + |
| 3 | +{% include layout_header_navbar.html %} |
| 4 | + |
| 5 | + |
| 6 | +<div id="container"> |
| 7 | + <div class="container"> |
| 8 | + <main role="main"> |
| 9 | + |
| 10 | + <div> |
| 11 | + <br> |
| 12 | + <center><h1>USCMS Postdoc: {{ page.postdoc-name }}</h1> |
| 13 | + |
| 14 | + <img src="{{page.photo}}" width="150px"> |
| 15 | + <br> |
| 16 | + <br> |
| 17 | + <b> Postdoc dates: </b> |
| 18 | + {% include postdoc_dates.html dates=page.dates %} |
| 19 | + <br> |
| 20 | + <b> Home Institution:</b> {{ page.institution }} |
| 21 | + <br> |
| 22 | + <br> |
| 23 | + </center> |
| 24 | + |
| 25 | + {%- if page.projects -%} |
| 26 | + {%- assign projects = page.projects -%} |
| 27 | + {%- else -%} |
| 28 | + {%- assign projects = "" | split: "," -%} |
| 29 | + {%- assign projects = projects | push: page -%} |
| 30 | + {%- endif -%} |
| 31 | + |
| 32 | + {% for project in projects %} |
| 33 | + |
| 34 | + <br> |
| 35 | + <h3>Project: {{project.project_title}}</h3> |
| 36 | + |
| 37 | + {{project.project_goal}} |
| 38 | + <br> |
| 39 | + <br> |
| 40 | + More information: <a href = "{{project.proposal}}">My project proposal</a><br> |
| 41 | + |
| 42 | + <br> |
| 43 | + <b>Mentors: </b> <br> |
| 44 | + <ul> |
| 45 | + {% for mentor in project.mentors %} |
| 46 | + <li> |
| 47 | + {% assign ok = 0 %} |
| 48 | + {% for person_hash in site.data.people %} |
| 49 | + {% assign person = person_hash[1] %} |
| 50 | + {% if person.shortname == mentor %} |
| 51 | + {{ person.name }} ({{person.institution}}) |
| 52 | + {% assign ok = 1 %} |
| 53 | + {% endif %} |
| 54 | + {% endfor %} |
| 55 | + {% if ok == 0 %} |
| 56 | + {{ mentor | markdownify }} |
| 57 | + {%endif%} |
| 58 | + </li> |
| 59 | + {% endfor %} |
| 60 | + </ul> |
| 61 | + {% endfor %} |
| 62 | + |
| 63 | + |
| 64 | + <b>Presentations</b> |
| 65 | + <ul> |
| 66 | + {% for presentation in page.presentations %} |
| 67 | + {% assign prettydate = presentation.date | date: "%-d %b %Y" %} |
| 68 | + <li>{{prettydate}} - <a href="{{presentation.url}}">"{{presentation.title}}"</a>, {{page.postdoc-name}}, <a href="{{presentation.meetingurl}}">{{presentation.meeting}}</a> |
| 69 | + {% if presentation.recordingurl %} |
| 70 | + Recording: <a href="{{presentation.recordingurl}}">{{presentation.title}}</a></li> |
| 71 | + {% endif %} |
| 72 | + {% endfor %} |
| 73 | + </ul> |
| 74 | + <hr> |
| 75 | + |
| 76 | + <b>Contact me:</b><br> |
| 77 | + <ul> |
| 78 | + {% if page.e-mail.size > 4 %} |
| 79 | + <li> |
| 80 | + <a href = "mailto:{{page.e-mail}}">Send me an email</a><br> |
| 81 | + </li> |
| 82 | + {% endif %} |
| 83 | + {% if page.website.size > 4 %} |
| 84 | + <li> |
| 85 | + <a href = {{page.website}}>Visit my website</a><br> |
| 86 | + </li> |
| 87 | + {% endif %} |
| 88 | + </ul> |
| 89 | + |
| 90 | + <div> |
| 91 | + {{content}} |
| 92 | + </div> |
| 93 | + |
| 94 | + </div> |
| 95 | + </main> |
| 96 | + </div> |
| 97 | + {% include footer.html %} |
| 98 | +</div> |
| 99 | + |
| 100 | +</body> |
| 101 | +</html> |
0 commit comments