forked from robert/robertjohnson.work
commit
3a219d2f8b
@ -130,7 +130,7 @@ experiences:
|
|||||||
projects:
|
projects:
|
||||||
title: Projects
|
title: Projects
|
||||||
intro: >
|
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.
|
section. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
||||||
Vestibulum et ligula in nunc bibendum fringilla a eu lectus.
|
Vestibulum et ligula in nunc bibendum fringilla a eu lectus.
|
||||||
assignments:
|
assignments:
|
||||||
@ -154,6 +154,25 @@ projects:
|
|||||||
link: "#"
|
link: "#"
|
||||||
tagline: "A responsive Bootstrap one page theme designed to help app developers promote their mobile apps"
|
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:
|
publications:
|
||||||
title: Publications
|
title: Publications
|
||||||
intro: |
|
intro: |
|
||||||
|
40
_includes/oss-contributions.html
Normal file
40
_includes/oss-contributions.html
Normal 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 %}
|
@ -13,6 +13,8 @@ layout: default
|
|||||||
|
|
||||||
{% include projects.html %}
|
{% include projects.html %}
|
||||||
|
|
||||||
|
{% include oss-contributions.html %}
|
||||||
|
|
||||||
{% include publications.html %}
|
{% include publications.html %}
|
||||||
|
|
||||||
{% include skills.html %}
|
{% include skills.html %}
|
||||||
|
Loading…
Reference in New Issue
Block a user