Skip to content

Commit

Permalink
adding space between projects in Research section
Browse files Browse the repository at this point in the history
  • Loading branch information
jvillasr committed Oct 2, 2023
1 parent 71a6b72 commit ecd249c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
13 changes: 13 additions & 0 deletions _includes/research copy.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,16 @@ <h2>Research Project 2</h2>
</div>
</div>
</section>


<section class="hero is-fullheight" id="research">
<div class="hero-body">
<div class="container has-text-centered">
<div class="section">
<p class="subtitle is-uppercase has-text-weight-medium has-text-grey">Projects</p>
</div>
{% include project-card.html %}
</div>
</div>
</section>
</div>
21 changes: 16 additions & 5 deletions _includes/research.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,23 @@
<div class="hero-body">
<div class="container has-text-centered">
<div class="section">
<p class="subtitle is-uppercase has-text-weight-medium has-text-grey">Projects</p>
<p class="subtitle is-uppercase has-text-weight-medium has-text-grey">Research</p>
</div>
<div class="columns is-centered is-multiline is-mobile">
{% for research in site.data.research %}
<div class="column is-one-third">
<div class="has-background-black card">
<figure class="image is-3by1"
style="background-image: url({{research.image}});">
</figure>
<div class="card-content">
<h1 class="title has-text-white is-size-4">{{ research.name }}</h1>
<p class="has-text-white has-text-weight-light content">{{ research.description | truncate: 80 }}</p>
</div>
</div>
</div>
{% endfor %}
</div>
{% include project-card.html %}
</div>
</div>
</section>
</div>


0 comments on commit ecd249c

Please sign in to comment.