21 lines
537 B
Twig
21 lines
537 B
Twig
|
|
||
|
<section>
|
||
|
<div class="container">
|
||
|
<div class="section-title">
|
||
|
<h2 class="title-text">Highlighted professional projects</h2>
|
||
|
</div>
|
||
|
{% include 'home/projects_list.html.twig' with {'projects': pro_projects} %}
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<section>
|
||
|
<div class="container">
|
||
|
<div class="section-title">
|
||
|
<h2 class="title-text">Highlighted side projects</h2>
|
||
|
</div>
|
||
|
{% include 'home/projects_list.html.twig' with {'projects': side_projects} %}
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
|