Fix docker compose and deploy

This commit is contained in:
Nelson Estevão
2023-08-05 23:04:15 +01:00
parent 15fe516dbc
commit 7cefa97145
1428 changed files with 13 additions and 53 deletions

22
_includes/interests.html Normal file
View File

@ -0,0 +1,22 @@
{% assign interests = site.data.data.sidebar.interests %}
{% if interests %}
<div class="interests-container container-block">
<h2 class="container-block-title">
{{ interests.title }}
</h2>
<ul class="list-unstyled interests-list">
{% for interest in interests.info %}
{% if interest.link %}
<li><a href="{{ interest.link }}">{{ interest.item }}</a></li>
{% else %}
<li>{{ interest.item }}</li>
{% endif %}
{% endfor %}
</ul>
</div><!--//interests-->
{% endif %}