Initial commits and git hooks

This commit is contained in:
2018-06-13 00:39:16 -04:00
parent 211490ae47
commit 8eccb2b8db
105 changed files with 76 additions and 117 deletions

View File

@@ -0,0 +1,25 @@
{% if site.data.data.projects %}
<section class="section projects-section">
<h2 class="section-title"><i class="fa fa-archive"></i>{{ site.data.data.projects.title }}</h2>
{% if site.data.data.projects.intro %}
<div class="intro">
<p>{{ site.data.data.projects.intro }}</p>
</div><!--//intro-->
{% endif %}
{% for project in site.data.data.projects.projects %}
<div class="item">
<span class="project-title"><a href="{{ project.link }}">{{ project.title }}</a></span>
{% if project.tagline %}
- <span class="project-tagline">{{ project.tagline }}</span>
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
{% endif %}