Move content to docs folder and fix docker-compose(#367)
This commit is contained in:
38
docs/_includes/projects.html
Normal file
38
docs/_includes/projects.html
Normal file
@ -0,0 +1,38 @@
|
||||
{% assign projects = site.data.data.projects %}
|
||||
{% if projects %}
|
||||
<section class="section projects-section">
|
||||
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-archive fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ projects.title }}
|
||||
</h2>
|
||||
|
||||
{% if projects.intro %}
|
||||
<div class="intro">
|
||||
<p>{{ projects.intro }}</p>
|
||||
</div><!--//intro-->
|
||||
{% endif %}
|
||||
|
||||
{% for project in projects.assignments %}
|
||||
<div class="item">
|
||||
|
||||
<span class="project-title">
|
||||
{% if project.link %}
|
||||
<a href="{{ project.link }}" target="_blank">{{ project.title }}</a>
|
||||
{% else %}
|
||||
{{ project.title }}
|
||||
{% endif %}
|
||||
</span>
|
||||
|
||||
{% if project.tagline %}
|
||||
- <span class="project-tagline">{{ project.tagline }}</span>
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
Reference in New Issue
Block a user