Move content to docs folder and fix docker-compose(#367)
This commit is contained in:
37
docs/_includes/experiences.html
Normal file
37
docs/_includes/experiences.html
Normal file
@ -0,0 +1,37 @@
|
||||
{% assign experiences = site.data.data.experiences %}
|
||||
{% if experiences %}
|
||||
<section class="section experiences-section">
|
||||
<h2 class="section-title">
|
||||
<span class="fa-stack fa-xs">
|
||||
<i class="fas fa-circle fa-stack-2x"></i>
|
||||
<i class="fas fa-briefcase fa-stack-1x fa-inverse"></i>
|
||||
</span>
|
||||
{{ experiences.title }}
|
||||
</h2>
|
||||
|
||||
{% for experience in experiences.info %}
|
||||
<div class="item">
|
||||
|
||||
<div class="meta">
|
||||
|
||||
<div class="upper-row">
|
||||
<h3 class="job-title">{{ experience.role }}</h3>
|
||||
<div class="time">{{ experience.time }}</div>
|
||||
</div><!--//upper-row-->
|
||||
|
||||
<div class="company">{{ experience.company }}</div>
|
||||
|
||||
</div><!--//meta-->
|
||||
|
||||
{% if experience.details %}
|
||||
<div class="details">
|
||||
{{ experience.details | markdownify }}
|
||||
</div><!--//details-->
|
||||
{% endif %}
|
||||
|
||||
</div><!--//item-->
|
||||
{% endfor %}
|
||||
|
||||
</section><!--//section-->
|
||||
{% endif %}
|
||||
|
Reference in New Issue
Block a user