diff --git a/_data/data.yml b/_data/data.yml index 16a7de8..c2b1d38 100644 --- a/_data/data.yml +++ b/_data/data.yml @@ -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: | diff --git a/_includes/oss-contributions.html b/_includes/oss-contributions.html new file mode 100644 index 0000000..f3693e0 --- /dev/null +++ b/_includes/oss-contributions.html @@ -0,0 +1,40 @@ +{% assign oss = site.data.data.oss %} +{% if oss %} +
+

+ + + + + {{ oss.title }} +

+ + {% if oss.intro %} +
+

{{ oss.intro }}

+
+ + {% endif %} + + {% for contribution in oss.contributions %} +
+ + + {% if contribution.link %} + {{ contribution.title }} + {% else %} + {{ contribution.title }} + {% endif %} + + + {% if contribution.tagline %} + - {{ contribution.tagline }} + {% endif %} + +
+ + {% endfor %} + +
+ +{% endif %} \ No newline at end of file diff --git a/index.html b/index.html index 8552e4a..82cd1c4 100644 --- a/index.html +++ b/index.html @@ -13,6 +13,8 @@ layout: default {% include projects.html %} +{% include oss-contributions.html %} + {% include publications.html %} {% include skills.html %}