
* add jekyll target blank * Remove manual target blank from everywhere * Update README.md * Set ruby version to 3.0.2 in the deploy script Co-authored-by: Maruan Al-Shedivat <maruan@genesistherapeutics.ai>
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<div class="grid-item">
|
|
{% if project.redirect %}
|
|
<a href="{{ project.redirect }}">
|
|
{% else %}
|
|
<a href="{{ project.url | relative_url }}">
|
|
{% endif %}
|
|
<div class="card hoverable">
|
|
{% if project.img %}
|
|
<img src="{{ project.img | relative_url }}" alt="project thumbnail">
|
|
{% endif %}
|
|
<div class="card-body">
|
|
<h2 class="card-title text-lowercase">{{ project.title }}</h2>
|
|
<p class="card-text">{{ project.description }}</p>
|
|
<div class="row ml-1 mr-1 p-0">
|
|
{% if project.github %}
|
|
<div class="github-icon">
|
|
<div class="icon" data-toggle="tooltip" title="Code Repository">
|
|
<a href="{{ project.github }}"><i class="fab fa-github gh-icon"></i></a>
|
|
</div>
|
|
{% if project.github_stars %}
|
|
<span class="stars" data-toggle="tooltip" title="GitHub Stars">
|
|
<i class="fas fa-star"></i>
|
|
<span id="{{ project.github_stars }}-stars"></span>
|
|
</span>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|