generated from MLH-Fellowship/pod-3.1.2-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from iamHrithikRaj/animateCard
Add animation in cards
- Loading branch information
Showing
3 changed files
with
56 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
<h2 id="education" class="section-heading">Education</h2> | ||
<div class="container card-container card-container-education"> | ||
{% for item in site.data.education %} | ||
<div class="card"> | ||
<div class="icon"> | ||
<img src="./assets/img/education/{{ item.logo }}"> | ||
<div class="animated animatedFadeInUp fadeInUp"> | ||
<div class="container card-container card-container-education"> | ||
{% for item in site.data.education %} | ||
<div class="card"> | ||
<div class="icon"> | ||
<img src="./assets/img/education/{{ item.logo }}"> | ||
</div> | ||
<div class="info"> | ||
<p class="title">{{ item.course }}</p> | ||
<p class="location">{{ item.institute }}</p> | ||
<p class="dates">{{ item.dates }}</p> | ||
</div> | ||
</div> | ||
<div class="info"> | ||
<p class="title">{{ item.course }}</p> | ||
<p class="location">{{ item.institute }}</p> | ||
<p class="dates">{{ item.dates }}</p> | ||
</div> | ||
</div> | ||
{% endfor %} | ||
{% endfor %} | ||
</div> | ||
</div> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters