Skip to content

Commit

Permalink
Update hierarchy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruvi16 committed Jul 7, 2020
1 parent 20bb92a commit 6171368
Showing 1 changed file with 28 additions and 26 deletions.
54 changes: 28 additions & 26 deletions themes/vocabulary_theme/templates/blocks/featured-projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,34 +11,36 @@ <h4 class="is-paddingless level-left">
<div class="project-list columns">
{% for repo in bag('repos.repos') %}
{% if repo.featured %}
<article class="card entry-post vertical project-index column is-one-third">
<div class="card-content">
<h4 class="card-title b-header"><a href="{{ repo.url }}">{{ repo.english_name }}</a></h4>
<a class="button is-text tiny site-link" href="{{ repo.website }}">
<span>Visit site</span>
<i class="icon external-link"></i>
</a>
<div class="content">
{{ repo.description }}
</div>
<div class="labels">
{% for technology in repo.technologies %}
<button class="button tag">{{ technology }}</button>
{% endfor %}
</div>
<div class="external-links">
<a class="button is-text tiny" href="{{ repo.url }}">
<i class="icon github"></i>
<span class="link-content">Github Repository</span>
</a>
<br>
<a class="button is-text tiny">
<i class="icon slack"></i>
<span class="link-content">Slack channel (#{{ repo.slack }})</span>
<div class=" column is-one-third">
<article class="card entry-post vertical project-index">
<div class="card-content">
<h4 class="card-title b-header"><a href="{{ repo.url }}">{{ repo.english_name }}</a></h4>
<a class="button is-text tiny site-link" href="{{ repo.website }}">
<span>Visit site</span>
<i class="icon external-link"></i>
</a>
<div class="content">
{{ repo.description }}
</div>
<div class="labels">
{% for technology in repo.technologies %}
<button class="button tag">{{ technology }}</button>
{% endfor %}
</div>
<div class="external-links">
<a class="button is-text tiny" href="{{ repo.url }}">
<i class="icon github"></i>
<span class="link-content">Github Repository</span>
</a>
<br>
<a class="button is-text tiny">
<i class="icon slack"></i>
<span class="link-content">Slack channel (#{{ repo.slack }})</span>
</a>
</div>
</div>
</div>
</article>
</article>
</div>
{% endif %}
{% endfor %}
</div>
Expand Down

0 comments on commit 6171368

Please sign in to comment.