|
| 1 | +<!doctype html> |
| 2 | + |
| 3 | +{% include layout_header_navbar.html %} |
| 4 | + |
| 5 | +<div id="container"> |
| 6 | + <div class="container page"> |
| 7 | + <main role="main"> |
| 8 | + |
| 9 | + <div> |
| 10 | + <br> |
| 11 | + <center><h1>HSF-India Trainee Fellow: {{ page.myname }}</h1> |
| 12 | + |
| 13 | + <img src="{{page.photo}}" width="150px"> |
| 14 | + <br> |
| 15 | + <br> |
| 16 | + <b> Fellowship dates: </b> |
| 17 | + {% include fellow_dates.html dates=page.dates %} |
| 18 | + <br> |
| 19 | + <b> Home Institution:</b> {{ page.institution }} |
| 20 | + <br> |
| 21 | + <b> Host Institution:</b> {{ page.host_institution }} |
| 22 | + <br> |
| 23 | + <br> |
| 24 | + </center> |
| 25 | + |
| 26 | + {%- assign projects = page.projects | default: page | ensure_array -%} |
| 27 | + |
| 28 | + {% for project in projects %} |
| 29 | + |
| 30 | + <br> |
| 31 | + <h3>Project: {{project.project_title}}</h3> |
| 32 | + |
| 33 | + {{project.project_goal}} |
| 34 | + <br> |
| 35 | + <br> |
| 36 | + More information: <a href = "{{project.proposal}}">My project proposal</a><br> |
| 37 | + |
| 38 | + <br> |
| 39 | + <b>Mentors: </b> <br> |
| 40 | + <ul> |
| 41 | + {% for mentor in project.mentors %} |
| 42 | + <li> |
| 43 | + {% assign person = site.data.people | values | find: "shortname", mentor %} |
| 44 | + {% if person %} |
| 45 | + {{ person.name }} ({{person.institution}}) |
| 46 | + {% else %} |
| 47 | + {{ mentor | markdownify }} |
| 48 | + {% endif %} |
| 49 | + </li> |
| 50 | + {% endfor %} |
| 51 | + </ul> |
| 52 | + {% endfor %} |
| 53 | + |
| 54 | + |
| 55 | + <b>Presentations and Publications</b> |
| 56 | + <ul> |
| 57 | + {% for presentation in page.presentations %} |
| 58 | + {% assign prettydate = presentation.date | date: "%-d %b %Y" %} |
| 59 | + <li>{{prettydate}} - <a href="{{presentation.url}}">"{{presentation.title}}"</a>, {{page.myname}}, <a href="{{presentation.meetingurl}}">{{presentation.meeting}}</a> |
| 60 | + {% if presentation.recordingurl %} |
| 61 | + Recording: <a href="{{presentation.recordingurl}}">{{presentation.title}}</a></li> |
| 62 | + {% endif %} |
| 63 | + {% endfor %} |
| 64 | + </ul> |
| 65 | + <hr> |
| 66 | + |
| 67 | + <b>Current Status</b> |
| 68 | + <br> |
| 69 | + {{page.current_status}} |
| 70 | + <br> |
| 71 | + <br> |
| 72 | + |
| 73 | + <b>Contact me:</b><br> |
| 74 | + <ul class="list-unstyled"> |
| 75 | + {% if page.e-mail.size > 4 %} |
| 76 | + <li> |
| 77 | + <i class="fas fa-envelope-square"></i><a href = "mailto:{{page.e-mail}}"> Send me an email</a><br> |
| 78 | + </li> |
| 79 | + {% endif %} |
| 80 | + {% if page.website.size > 4 %} |
| 81 | + <li> |
| 82 | + <i class="fas fa-link"></i><a href = {{page.website}}> Visit my website</a><br> |
| 83 | + </li> |
| 84 | + {% endif %} |
| 85 | + {% if page.github-username.size > 4 %} |
| 86 | + <li> |
| 87 | + <i class="fab fa-github"></i><a href = "https://github.com/{{page.github-username}}"> Visit my GitHub Repo</a><br> |
| 88 | + </li> |
| 89 | + {% endif %} |
| 90 | + {% if page.gitlab-url.size > 4 %} |
| 91 | + <li> |
| 92 | + <i class="fab fa-gitlab"></i><a href = "{{page.gitlab-url}}"> Visit my GitLab Repo</a><br> |
| 93 | + </li> |
| 94 | + {% endif %} |
| 95 | + {% if page.linkedin-profile.size > 4 %} |
| 96 | + <li> |
| 97 | + <i class="fab fa-linkedin"></i><a href = "{{page.linkedin-profile}}"> Visit my LinkedIn Profile</a><br> |
| 98 | + </li> |
| 99 | + {% endif %} |
| 100 | + </ul> |
| 101 | + |
| 102 | + |
| 103 | + <div> |
| 104 | + {{content}} |
| 105 | + </div> |
| 106 | + |
| 107 | + </div> |
| 108 | + </main> |
| 109 | + </div> |
| 110 | + {% include_cached footer.html %} |
| 111 | +</div> |
| 112 | + |
| 113 | +{% include_cached layout_analytics.html %} |
| 114 | +</body> |
| 115 | +</html> |
0 commit comments