Skip to content

Commit

Permalink
Added new item in CV.
Browse files Browse the repository at this point in the history
  • Loading branch information
sr-dash committed Jan 8, 2025
1 parent 7b6fb27 commit fd606c6
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
32 changes: 32 additions & 0 deletions _includes/resume/outreachprojects.liquid
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<ul class="card-text font-weight-light list-group list-group-flush">
{% for content in data[1] %}
<li class="list-group-item">
<div class="row">
<div class="col-xs-2 cl-sm-2 col-md-2 text-center date-column">
{% if content.startDate %}
{% assign startDate = content.startDate | split: '-' | slice: 0, 2 | join: '.' %}
{% assign endDate = content.endDate | split: '-' | slice: 0, 2 | join: '.' | default: 'Present' %}
{% assign date = startDate | append: ' - ' %}
{% assign date = date | append: endDate %}
{% else %}
{% assign date = '' %}
{% endif %}
<span class="badge font-weight-bold danger-color-dark text-uppercase align-middle" style="min-width: 75px"> {{ date }} </span>
</div>
<div class="col-xs-10 cl-sm-10 col-md-10 mt-2 mt-md-0">
<h6 class="title font-weight-bold ml-1 ml-md-4">
<a href="{{ content.url }}">{{ content.name }}</a>
</h6>
<h6 class="ml-1 ml-md-4" style="font-size: 0.95rem; font-style: italic">{{ content.summary }}</h6>
<ul class="items">
{% for item in content.highlights %}
<li>
<span class="item">{{ item }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
</li>
{% endfor %}
</ul>
2 changes: 2 additions & 0 deletions _layouts/cv.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ layout: default
{% include resume/volunteer.liquid %}
{% when 'projects' %}
{% include resume/projects.liquid %}
{% when 'outreach' %}
{% include resume/outreachprojects.liquid %}
{% when 'awards' %}
{% include resume/awards.liquid %}
{% when 'skills' %}
Expand Down
2 changes: 1 addition & 1 deletion assets/json/resume.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
"highlights": ["pyCELP","FORWARD","PFSS", "SFT","BATSRUS/SWMF"]
}
],
"Outreach activities": [
"outreach": [
{
"name": "Prediction of solar global coronal magnetic field configuration prediction",
"summary": "I have been working on predicting the coronal magnetic field configuration using surface flux transport model and PFSS extrapolation for many diferent instances. A few of them can be found at these links, <a href='http://www.cessi.in/solareclipse2017'>2017 August </a>, <a href='http://www.cessi.in/solareclipse2019'>2019 July </a>, <a href='http://www.cessi.in/solareclipse2019/december'>2019 December </a> and <a href='http://www.cessi.in/solareclipse2020'>2020 December</a>.",
Expand Down

0 comments on commit fd606c6

Please sign in to comment.