Merge pull request #337 from sharu725/fix-309

Fix #309 - oss contribs
This commit is contained in:
Sharath Kumar 2022-11-17 09:32:00 +05:30 committed by GitHub
commit 3a219d2f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 62 additions and 1 deletions

View File

@ -130,7 +130,7 @@ experiences:
projects:
title: Projects
intro: >
You can list your side projects or open source libraries in this
You can list your side projects in this
section. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Vestibulum et ligula in nunc bibendum fringilla a eu lectus.
assignments:
@ -154,6 +154,25 @@ projects:
link: "#"
tagline: "A responsive Bootstrap one page theme designed to help app developers promote their mobile apps"
oss:
title: OSS Contributions
intro: >
You can list your open source software contributions in this
section. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Vestibulum et ligula in nunc bibendum fringilla a eu lectus.
contributions:
- title: Tempo
link: "#"
tagline: "A responsive website template designed to help startups promote their products or services and to attract users & investors"
- title: Atom
link: "#"
tagline: "A comprehensive website template solution for startups/developers to market their mobile apps."
- title: Delta
link: "#"
tagline: "A responsive Bootstrap one page theme designed to help app developers promote their mobile apps"
publications:
title: Publications
intro: |

View File

@ -0,0 +1,40 @@
{% assign oss = site.data.data.oss %}
{% if oss %}
<section class="section oss-section">
<h2 class="section-title">
<span class="fa-stack fa-xs">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-box-open fa-stack-1x fa-inverse"></i>
</span>
{{ oss.title }}
</h2>
{% if oss.intro %}
<div class="intro">
<p>{{ oss.intro }}</p>
</div>
<!--//intro-->
{% endif %}
{% for contribution in oss.contributions %}
<div class="item">
<span class="project-title">
{% if contribution.link %}
<a href="{{ project.link }}" target="_blank">{{ contribution.title }}</a>
{% else %}
{{ contribution.title }}
{% endif %}
</span>
{% if contribution.tagline %}
- <span class="project-tagline">{{ contribution.tagline }}</span>
{% endif %}
</div>
<!--//item-->
{% endfor %}
</section>
<!--//section-->
{% endif %}

View File

@ -13,6 +13,8 @@ layout: default
{% include projects.html %}
{% include oss-contributions.html %}
{% include publications.html %}
{% include skills.html %}