-
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.
Added everysk testimonial and removed placeholder RMJ testimonial (#16)
* Added everysk testimonial and removed placeholder RMJ testimonial * Stylized testimonial * Updated testimonial text with correct version * Add date to testimonial
- Loading branch information
Showing
4 changed files
with
18 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
client: Everysk | ||
--- | ||
testimonial: PyMC Labs worked with our research team to implement a complex Bayesian model for us that provided value by estimating characteristics of financial assets. Communication was seamless and they provided invaluable support when presenting this model to our own client. They are truly experts in Bayesian modeling and probabilistic programming and are a pleasure to work with. | ||
--- | ||
date: 2020-10-15 |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
{% macro render_testimonial(testimonial) %} | ||
|
||
<div> | ||
<h3>{{ testimonial.client }}</h3> | ||
<p>{{ testimonial.testimonial }}</p> | ||
<div class="card-group"> | ||
<div class="card col-md-4"> | ||
<img src="https://www.everysk.com/images/everysk_logo.svg" class="card-img-top" alt="..."> | ||
<div class="card-body"> | ||
<h5 class="card-title">{{ testimonial.client }}</h5> | ||
<p class="card-text">{{ testimonial.testimonial }}</p> | ||
<p class="card-text"><small class="text-muted">{{ testimonial.date }}</small></p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{% endmacro %} |